| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function matchFirst(string $substring, callable $getString) |
||
| 23 | { |
||
| 24 | $substring = mb_strtolower($substring); |
||
| 25 | foreach ($this->collection as $item) { |
||
| 26 | $currentValue = mb_strtolower($getString($item)); |
||
| 27 | |||
| 28 | if (false !== mb_strpos($currentValue, $substring)) { |
||
| 29 | return $item; |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | return null; |
||
| 34 | } |
||
| 36 |