Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class JsUtils { |
||
14 | |||
15 | /** |
||
16 | * Returns a JSON string from an object. |
||
17 | * |
||
18 | * @param object $object |
||
19 | * @return string |
||
20 | */ |
||
21 | public static function objectToJSON(object $object): string { |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Add script tags to a javascript code. |
||
32 | * |
||
33 | * @param string $script |
||
34 | * @return string |
||
35 | */ |
||
36 | public static function wrapScript(string $script): string { |
||
47 |