for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Util\Parser\Null;
use Dazzle\Util\Parser\ParserInterface;
class NullParser implements ParserInterface
{
/**
* @override
* @inheritDoc
*/
public function encode($mixed)
return '';
}
public function decode($str)
return null;