public function testEncodeDecode()
 {
     $int = Base62Utils::decode('onPHP');
     $this->assertSame($int, 360312369);
     $str = Base62Utils::encode(360312369);
     $this->assertSame('onPHP', $str);
 }