for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digia\GraphQL\Util;
trait JsonEncodeArrayTrait
{
/**
* @return array
*/
abstract public function toArray(): array;
* @return string
public function toJSON(): string
return json_encode($this->toArray(), JSON_UNESCAPED_UNICODE);
}