| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 7 | 
| Code Lines | 3 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 3 | 
| CRAP Score | 2 | 
| Changes | 1 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php  | 
            ||
| 24 | 6 | public function match(object|array $item, FilterInterface $filter, array $iterableFilterHandlers): bool  | 
            |
| 25 |     { | 
            ||
| 26 | /** @var ILike $filter */  | 
            ||
| 27 | |||
| 28 | 6 | $itemValue = ArrayHelper::getValue($item, $filter->getField());  | 
            |
| 29 | |||
| 30 | 6 | return is_string($itemValue) && mb_stripos($itemValue, $filter->getValue()) !== false;  | 
            |
| 31 | }  | 
            ||
| 33 |