Exemple #1
0
 public function testBase36Decode()
 {
     $this->assertEquals(10, Utils::base36Decode('a'));
 }
Exemple #2
0
 /**
  * @param string
  * @return int
  */
 protected function keyToDigit($key)
 {
     return Utils::base36Decode($key);
 }