Conditions | 6 |
Paths | 5 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
48 | 9 | protected function generateScalar($value): string |
|
49 | { |
||
50 | 9 | if ($value === null) { |
|
51 | 1 | return 'null'; |
|
52 | } |
||
53 | |||
54 | 8 | if (is_bool($value)) { |
|
55 | 2 | return $value ? 'true' : 'false'; |
|
56 | } |
||
57 | |||
58 | 6 | if (is_numeric($value) || preg_match('/[^:]+::[^:]+/', $value)) { |
|
59 | 3 | return (string)$value; |
|
60 | } |
||
61 | |||
62 | 3 | return "'" . preg_quote($value, '\'') . "'"; |
|
63 | } |
||
64 | } |
||
65 |