public function ProjectServiceContainer::__construct

Constructor.

Overrides Container::__construct

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php, line 24

Class

ProjectServiceContainer
ProjectServiceContainer

Code

public function __construct() {
  $this->parameters = $this
    ->getDefaultParameters();
  $this->services = $this->scopedServices = $this->scopeStacks = array();
  $this
    ->set('service_container', $this);
  $this->scopes = array();
  $this->scopeChildren = array();
  $this->methodMap = array(
    'test' => 'getTestService',
  );
}