| Conditions | 4 | 
| Paths | 3 | 
| Total Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 7 | 
| CRAP Score | 4 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 35 | 3 | protected function processItems(array $items)  | 
            |
| 36 |     { | 
            ||
| 37 | 3 | $processedItems = [];  | 
            |
| 38 | |||
| 39 | 3 |         foreach ($items as $entry) { | 
            |
| 40 | 3 |             if (isset($entry['metadata']) && is_array($entry['metadata'])) { | 
            |
| 41 | 3 | $processedItems[] = new SearchResult($entry);  | 
            |
| 42 | }  | 
            ||
| 43 | }  | 
            ||
| 44 | |||
| 45 | 3 | $this->items = new ModelCollection($processedItems);  | 
            |
| 46 | 3 | }  | 
            |
| 47 | }  | 
            ||
| 48 |