rector/src/FileSystem/JsonFileSystem.php
Tomas Votruba dd875cd0c9 Updated Rector to commit d09ae7400a75f7694a11c2d8353c2fd14b6419e3
d09ae7400a Add "custom-rule" command to make creating rules easy (#5498)
2024-01-25 00:06:40 +00:00

27 lines
668 B
PHP

<?php
declare (strict_types=1);
namespace Rector\FileSystem;
use RectorPrefix202401\Nette\Utils\FileSystem;
use RectorPrefix202401\Nette\Utils\Json;
final class JsonFileSystem
{
/**
* @return array<string, mixed>
*/
public static function readFilePath(string $filePath) : array
{
$fileContents = FileSystem::read($filePath);
return Json::decode($fileContents, Json::FORCE_ARRAY);
}
/**
* @param array<string, mixed> $data
*/
public static function writeFile(string $filePath, array $data) : void
{
$json = Json::encode($data, Json::PRETTY);
FileSystem::write($filePath, $json);
}
}