ControllerBase::container

private 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 293

Class

ControllerBase
Utility base class for thin controllers.

Namespace

Drupal\Core\Controller

Code

private function container() {
  return \Drupal::getContainer();
}
doc_Drupal
2016-10-29 08:58:55
Comments
Leave a Comment

Please login to continue.