Conditions | 3 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function dbTypecast(mixed $value): int|string|ExpressionInterface|null |
||
23 | { |
||
24 | if ($value instanceof ExpressionInterface) { |
||
25 | return $value; |
||
26 | } |
||
27 | |||
28 | return match ($value) { |
||
29 | null, '' => null, |
||
30 | false => 0, |
||
31 | true => 1, |
||
32 | default => match (true) { |
||
33 | PHP_INT_MIN <= $value && $value <= PHP_INT_MAX => (int) $value, |
||
34 | default => (string) $value, |
||
35 | }, |
||
48 |