Kraken\Util\Parser\ParserInterface::decode PHP Метод

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

Decode the object from string.
public decode ( string $str ) : mixed
$str string
Результат mixed
    public function decode($str);

Usage Example

Пример #1
0
 /**
  * @dataProvider parsersProvider
  */
 public function testApiDecode_ReturnsEmptyString(ParserInterface $parser)
 {
     $this->assertEquals('', $parser->decode($this->getString()));
 }
All Usage Examples Of Kraken\Util\Parser\ParserInterface::decode
ParserInterface