decode() public method

..
public decode ( string $str ) : string
$str string The base32 string to convert
return string The normal string
Beispiel #1
0
 public function testDecodeWithCrapData()
 {
     $this->setExpectedException('\\Exception');
     $this->base32->decode('Crap data');
 }