eZ\Publish\Core\Persistence\Legacy\Tests\TestCase::getResultTextRepresentation PHP 메소드

getResultTextRepresentation() 보호된 정적인 메소드

Get a text representation of a result set.
protected static getResultTextRepresentation ( array $result ) : string
$result array
리턴 string
    protected static function getResultTextRepresentation(array $result)
    {
        return implode("\n", array_map(function ($row) {
            return implode(', ', $row);
        }, $result));
    }