| Conditions | 3 | 
| Paths | 3 | 
| Total Lines | 13 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 7 | 
| CRAP Score | 3 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 24 | 39 | public function match(object|array $item, FilterInterface $filter, array $iterableFilterHandlers): bool  | 
            |
| 25 |     { | 
            ||
| 26 | /** @var GreaterThanOrEqual $filter */  | 
            ||
| 27 | |||
| 28 | 39 | $itemValue = ArrayHelper::getValue($item, $filter->getField());  | 
            |
| 29 | 39 | $argumentValue = $filter->getValue();  | 
            |
| 30 | |||
| 31 | 39 |         if (!$itemValue instanceof DateTimeInterface) { | 
            |
| 32 | 36 | return $itemValue >= $argumentValue;  | 
            |
| 33 | }  | 
            ||
| 34 | |||
| 35 | 3 | return $argumentValue instanceof DateTimeInterface  | 
            |
| 36 | 3 | && $itemValue->getTimestamp() >= $argumentValue->getTimestamp();  | 
            |
| 37 | }  | 
            ||
| 39 |