Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | final class DebugTools |
||
8 | { |
||
9 | /** |
||
10 | * Handy debugging function |
||
11 | * |
||
12 | * @param string $rawString |
||
13 | * @return string |
||
14 | */ |
||
15 | public static function convertToBinaryRepresentation(string $rawString): string |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Handy debugging function |
||
30 | * |
||
31 | * @param string $binaryRepresentation |
||
32 | * @param bool $applyBase64 |
||
33 | * @return string |
||
34 | */ |
||
35 | public static function convertBinaryToString(string $binaryRepresentation, bool $applyBase64 = false): string |
||
50 |