megabgg/php-project-lvl2

View on GitHub
src/Formatters/Json.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace CalcDiff\Formatters\Json;

function getMapForJson(): array
{
    return [
        'useNodes' => true,
        'collectString' => function ($elements) {
            return json_encode($elements, JSON_PRETTY_PRINT);
        },
    ];
}