<?php namespace Hashids; class Hashids implements HashidsInterface {     const SEP_DIV = 3.5;     const GUARD_DIV = 12;     protected $alphabet;     protected $seps = 'cfhistuCFHISTU';     protected $guards;     protected $minHashLength;     protected $salt;     public function __const