for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheSupportGroup\Common\Validator\Format;
use TheSupportGroup\Common\Validator\Contracts\Format\FormatInterface;
class Json implements FormatInterface
{
public function reformat($messages)
return json_encode($messages);
}