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