find('td > a') as $index => $a) { $item = []; // Create an empty item $articlePath = $a->href; $item['title'] = $a->innertext; $item['uri'] = $articlePath; $item['content'] = ''; $this->items[] = $item; // Add item to the list if (count($this->items) >= 10) { break; } } } }