You are here

public function SearchController::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/search/src/Controller/SearchController.php \Drupal\search\Controller\SearchController::__construct()
  2. 9 core/modules/search/src/Controller/SearchController.php \Drupal\search\Controller\SearchController::__construct()

Constructs a new search controller.

Parameters

\Drupal\search\SearchPageRepositoryInterface $search_page_repository: The search page repository.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

File

core/modules/search/src/Controller/SearchController.php, line 48

Class

SearchController
Route controller for search.

Namespace

Drupal\search\Controller

Code

public function __construct(SearchPageRepositoryInterface $search_page_repository, RendererInterface $renderer) {
  $this->searchPageRepository = $search_page_repository;
  $this->logger = $this
    ->getLogger('search');
  $this->renderer = $renderer;
}