interface ContainerInterface
Same name in this branch
- 11.1.x vendor/symfony/dependency-injection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface
- 11.1.x vendor/psr/container/src/ContainerInterface.php \Psr\Container\ContainerInterface
The interface for Drupal service container classes.
Hierarchy
- interface \Psr\Container\ContainerInterface
- interface \Symfony\Component\DependencyInjection\ContainerInterface extends \Psr\Container\ContainerInterface
- interface \Drupal\Component\DependencyInjection\ContainerInterface extends \Symfony\Component\DependencyInjection\ContainerInterface
- interface \Symfony\Component\DependencyInjection\ContainerInterface extends \Psr\Container\ContainerInterface
Expanded class hierarchy of ContainerInterface
All classes that implement ContainerInterface
1 file declares its use of ContainerInterface
- ContainerBuilder.php in core/
lib/ Drupal/ Core/ DependencyInjection/ ContainerBuilder.php
File
-
core/
lib/ Drupal/ Component/ DependencyInjection/ ContainerInterface.php, line 10
Namespace
Drupal\Component\DependencyInjectionView source
interface ContainerInterface extends BaseContainerInterface {
/**
* Gets all defined service IDs.
*
* @return array
* An array of all defined service IDs.
*/
public function getServiceIds();
}