for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace leandrogehlen\exporter\serializers;
use yii\helpers\Json;
/**
* Formats the given data into json content.
*
* @author Leandro Guindani Gehlen <[email protected]>
*/
class JsonSerializer extends HierarchicalSerializer
{
* @inheritdoc
public function formatData($data)
return Json::encode($data);
}