mirror of
https://github.com/danog/psalm.git
synced 2024-12-15 19:07:00 +01:00
42 lines
865 B
PHP
42 lines
865 B
PHP
|
<?php
|
||
|
namespace Psalm\Internal\Json;
|
||
|
|
||
|
use RuntimeException;
|
||
|
|
||
|
use function json_encode;
|
||
|
use const JSON_PRETTY_PRINT;
|
||
|
use const JSON_UNESCAPED_SLASHES;
|
||
|
use const JSON_UNESCAPED_UNICODE;
|
||
|
|
||
|
/**
|
||
|
* Provides ability of pretty printed JSON output.
|
||
|
*/
|
||
|
class Json
|
||
|
{
|
||
|
public const PRETTY = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
public const DEFAULT = 0;
|
||
|
|
||
|
/**
|
||
|
* @param mixed $data
|
||
|
* @param int|null $options
|
||
|
* @return string
|
||
|
*/
|
||
|
public static function encode($data, ?int $options = null): string
|
||
|
{
|
||
|
if ($options === null) {
|
||
|
$options = self::DEFAULT;
|
||
|
}
|
||
|
|
||
|
$result = json_encode($data, $options);
|
||
|
if ($result === false) {
|
||
|
throw new RuntimeException('Cannot create JSON string.');
|
||
|
}
|
||
|
|
||
|
return $result;
|
||
|
}
|
||
|
}
|