private function ControllerBase::container in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Controller/ControllerBase.php \Drupal\Core\Controller\ControllerBase::container()
Returns the service container.
This method is marked private to prevent sub-classes from retrieving services from the container through it. Instead, \Drupal\Core\DependencyInjection\ContainerInjectionInterface should be used for injecting services.
Return value
\Symfony\Component\DependencyInjection\ContainerInterface $container The service container.
File
- core/
lib/ Drupal/ Core/ Controller/ ControllerBase.php, line 296 - Contains \Drupal\Core\Controller\ControllerBase.
Class
- ControllerBase
- Utility base class for thin controllers.
Namespace
Drupal\Core\ControllerCode
private function container() {
return \Drupal::getContainer();
}