Overrides SearchInterface::buildResults
public function buildResults() { $results = $this->execute(); $built = []; foreach ($results as $result) { $built[] = [ '#theme' => 'search_result', '#result' => $result, '#plugin_id' => $this->getPluginId(), ]; } return $built; }