Conditions | 5 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 5 |
Changes | 0 |
1 | <?php |
||
29 | 15 | public function transform($searchable, array $array): array |
|
30 | { |
||
31 | 15 | foreach ($array as $key => $value) { |
|
32 | /* |
||
33 | * Casts numeric strings to integers/floats. |
||
34 | */ |
||
35 | 15 | if (is_string($value) && is_numeric($value)) { |
|
36 | 15 | $array[$key] = ctype_digit($value) ? (int) $value : (float) $value; |
|
37 | } |
||
38 | } |
||
39 | |||
40 | 15 | return $array; |
|
41 | } |
||
43 |