decode() публичный Метод

..
public decode ( string $str ) : string
$str string The base32 string to convert
Результат string The normal string
Пример #1
0
 public function testDecodeWithCrapData()
 {
     $this->setExpectedException('\\Exception');
     $this->base32->decode('Crap data');
 }