W3cubDocs

/Drupal 8

private function FormBase::container

private FormBase::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/Form/FormBase.php, line 211

Class

FormBase
Provides a base class for forms.

Namespace

Drupal\Core\Form

Code

private function container() {
  return \Drupal::getContainer();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Form!FormBase.php/function/FormBase::container/8.1.x