for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MLD\Converter;
/**
* Class JsonConverter
*/
class JsonConverter extends AbstractJsonConverter
{
* @return string minified JSON, one country per line
public function convert()
$this->processEmptyArrays();
return preg_replace("@},{@", "},\n{", json_encode($this->countries) . "\n");
}