class ProjectServiceContainer

ProjectServiceContainer

This class has been auto-generated by the Symfony Dependency Injection Component.

Hierarchy

Expanded class hierarchy of ProjectServiceContainer

1 string reference to 'ProjectServiceContainer'
PhpDumper::dump in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php
Dumps the service container as a PHP class.

File

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

View source
class ProjectServiceContainer extends Container {

  /**
   * Constructor.
   */
  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(
      'bar' => 'getBarService',
      'baz' => 'getBazService',
      'depends_on_request' => 'getDependsOnRequestService',
      'factory_service' => 'getFactoryServiceService',
      'foo' => 'getFooService',
      'foo.baz' => 'getFoo_BazService',
      'foo_bar' => 'getFooBarService',
      'foo_with_inline' => 'getFooWithInlineService',
      'method_call1' => 'getMethodCall1Service',
      'request' => 'getRequestService',
    );
    $this->aliases = array(
      'alias_for_alias' => 'foo',
      'alias_for_foo' => 'foo',
    );
  }

  /**
   * Gets the 'bar' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return FooClass A FooClass instance.
   */
  protected function getBarService() {
    $this->services['bar'] = $instance = new \FooClass('foo', $this
      ->get('foo.baz'), $this
      ->getParameter('foo_bar'));
    $this
      ->get('foo.baz')
      ->configure($instance);
    return $instance;
  }

  /**
   * Gets the 'baz' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return Baz A Baz instance.
   */
  protected function getBazService() {
    $this->services['baz'] = $instance = new \Baz();
    $instance
      ->setFoo($this
      ->get('foo_with_inline'));
    return $instance;
  }

  /**
   * Gets the 'depends_on_request' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return stdClass A stdClass instance.
   */
  protected function getDependsOnRequestService() {
    $this->services['depends_on_request'] = $instance = new \stdClass();
    $instance
      ->setRequest($this
      ->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
    return $instance;
  }

  /**
   * Gets the 'factory_service' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return Bar A Bar instance.
   */
  protected function getFactoryServiceService() {
    return $this->services['factory_service'] = $this
      ->get('foo.baz')
      ->getInstance();
  }

  /**
   * Gets the 'foo' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return FooClass A FooClass instance.
   */
  protected function getFooService() {
    $a = $this
      ->get('foo.baz');
    $this->services['foo'] = $instance = call_user_func(array(
      'FooClass',
      'getInstance',
    ), 'foo', $a, array(
      'bar' => 'foo is bar',
      'foobar' => 'bar',
    ), true, $this);
    $instance
      ->setBar($this
      ->get('bar'));
    $instance
      ->initialize();
    $instance->foo = 'bar';
    $instance->moo = $a;
    sc_configure($instance);
    return $instance;
  }

  /**
   * Gets the 'foo.baz' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return BazClass A BazClass instance.
   */
  protected function getFoo_BazService() {
    $this->services['foo.baz'] = $instance = call_user_func(array(
      'BazClass',
      'getInstance',
    ));
    call_user_func(array(
      'BazClass',
      'configureStatic1',
    ), $instance);
    return $instance;
  }

  /**
   * Gets the 'foo_bar' service.
   *
   * @return FooClass A FooClass instance.
   */
  protected function getFooBarService() {
    return new \FooClass();
  }

  /**
   * Gets the 'foo_with_inline' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return Foo A Foo instance.
   */
  protected function getFooWithInlineService() {
    $a = new \Bar();
    $this->services['foo_with_inline'] = $instance = new \Foo();
    $a
      ->setBaz($this
      ->get('baz'));
    $a->pub = 'pub';
    $instance
      ->setBar($a);
    return $instance;
  }

  /**
   * Gets the 'method_call1' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return FooClass A FooClass instance.
   */
  protected function getMethodCall1Service() {
    require_once '%path%foo.php';
    $this->services['method_call1'] = $instance = new \FooClass();
    $instance
      ->setBar($this
      ->get('foo'));
    $instance
      ->setBar(NULL);
    return $instance;
  }

  /**
   * Gets the 'request' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @throws RuntimeException always since this service is expected to be injected dynamically
   */
  protected function getRequestService() {
    throw new RuntimeException('You have requested a synthetic service ("request"). The DIC does not know how to construct this service.');
  }

  /**
   * Updates the 'request' service.
   */
  protected function synchronizeRequestService() {
    if ($this
      ->initialized('depends_on_request')) {
      $this
        ->get('depends_on_request')
        ->setRequest($this
        ->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function getParameter($name) {
    $name = strtolower($name);
    if (!(isset($this->parameters[$name]) || array_key_exists($name, $this->parameters))) {
      throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name));
    }
    return $this->parameters[$name];
  }

  /**
   * {@inheritdoc}
   */
  public function hasParameter($name) {
    $name = strtolower($name);
    return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters);
  }

  /**
   * {@inheritdoc}
   */
  public function setParameter($name, $value) {
    throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
  }

  /**
   * {@inheritDoc}
   */
  public function getParameterBag() {
    if (null === $this->parameterBag) {
      $this->parameterBag = new FrozenParameterBag($this->parameters);
    }
    return $this->parameterBag;
  }

  /**
   * Gets the default parameters.
   *
   * @return array An array of the default parameters
   */
  protected function getDefaultParameters() {
    return array(
      'baz_class' => 'BazClass',
      'foo_class' => 'FooClass',
      'foo' => 'bar',
    );
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Container::$aliases protected property
Container::$loading protected property
Container::$methodMap protected property
Container::$parameterBag protected property
Container::$scopeChildren protected property
Container::$scopedServices protected property
Container::$scopes protected property
Container::$scopeStacks protected property
Container::$services protected property
Container::addScope public function Adds a scope to the container. Overrides ContainerInterface::addScope
Container::camelize public static function Camelizes a string.
Container::compile public function Compiles the container. 1
Container::enterScope public function This is called when you enter a scope Overrides ContainerInterface::enterScope
Container::get public function Gets a service. Overrides ContainerInterface::get 1
Container::getServiceIds public function Gets all service ids. 1
Container::has public function Returns true if the given service is defined. Overrides ContainerInterface::has 1
Container::hasScope public function Returns whether this container has a certain scope Overrides ContainerInterface::hasScope
Container::initialized public function Returns true if the given service has actually been initialized Overrides IntrospectableContainerInterface::initialized
Container::isFrozen public function Returns true if the container parameter bag are frozen.
Container::isScopeActive public function Returns whether this scope is currently active Overrides ContainerInterface::isScopeActive
Container::leaveScope public function This is called to leave the current scope, and move back to the parent scope. Overrides ContainerInterface::leaveScope
Container::set public function Sets a service. Overrides ContainerInterface::set 1
Container::underscore public static function A string to underscore.
ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE constant
ContainerInterface::IGNORE_ON_INVALID_REFERENCE constant
ContainerInterface::NULL_ON_INVALID_REFERENCE constant
ContainerInterface::SCOPE_CONTAINER constant
ContainerInterface::SCOPE_PROTOTYPE constant
ProjectServiceContainer::getBarService protected function Gets the 'bar' service.
ProjectServiceContainer::getBazService protected function Gets the 'baz' service.
ProjectServiceContainer::getDefaultParameters protected function Gets the default parameters.
ProjectServiceContainer::getDependsOnRequestService protected function Gets the 'depends_on_request' service.
ProjectServiceContainer::getFactoryServiceService protected function Gets the 'factory_service' service.
ProjectServiceContainer::getFooBarService protected function Gets the 'foo_bar' service.
ProjectServiceContainer::getFooService protected function Gets the 'foo' service.
ProjectServiceContainer::getFooWithInlineService protected function Gets the 'foo_with_inline' service.
ProjectServiceContainer::getFoo_BazService protected function Gets the 'foo.baz' service.
ProjectServiceContainer::getMethodCall1Service protected function Gets the 'method_call1' service.
ProjectServiceContainer::getParameter public function Gets a parameter. Overrides Container::getParameter
ProjectServiceContainer::getParameterBag public function Gets the service container parameter bag. Overrides Container::getParameterBag
ProjectServiceContainer::getRequestService protected function Gets the 'request' service.
ProjectServiceContainer::hasParameter public function Checks if a parameter exists. Overrides Container::hasParameter
ProjectServiceContainer::setParameter public function Sets a parameter. Overrides Container::setParameter
ProjectServiceContainer::synchronizeRequestService protected function Updates the 'request' service.
ProjectServiceContainer::__construct public function Constructor. Overrides Container::__construct