| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function dbTypecast(mixed $value): bool|ExpressionInterface|null |
||
| 21 | { |
||
| 22 | /** Optimized for performance. Do not merge cases or change order. */ |
||
| 23 | return match (true) { |
||
| 24 | $value, $value === false, $value === null, $value instanceof ExpressionInterface => $value, |
||
| 25 | $value === '' => null, |
||
| 26 | default => (bool) $value, |
||
| 27 | }; |
||
| 39 |