for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Seblegall\ApiValidatorBundle\Decoder;
class JsonDecoder implements DecoderInterface
{
/**
* {@inheritdoc}
*/
public function decode($data)
return json_decode($data, true) ?: false;
}