for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Tarsana\Command\Helpers\Decoders;
use Tarsana\Command\Interfaces\Helpers\DecoderInterface;
class JsonDecoder implements DecoderInterface {
public function decode(string $text) : array
{
return json_decode($text, true);
}