Kraken\Util\Parser\ParserInterface::decode PHP Méthode

decode() public méthode

Decode the object from string.
public decode ( string $str ) : mixed
$str string
Résultat mixed
    public function decode($str);

Usage Example

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