for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Tarsana\Command\Helpers\Encoders;
use Tarsana\Command\Interfaces\Helpers\EncoderInterface;
class JsonEncoder implements EncoderInterface {
public function encode(array $data) : string
{
return json_encode($data);
}