Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class JsonHelper |
||
8 | { |
||
9 | /** |
||
10 | * Encodes data as a JSON string representation. |
||
11 | * @param mixed $data |
||
12 | * @param int $options |
||
13 | * |
||
14 | * @return string |
||
15 | * @throws \Rexlabs\Smokescreen\Exception\JsonEncodeException |
||
16 | */ |
||
17 | 2 | public static function encode($data, $options = 0): string |
|
25 | } |
||
26 | } |