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.php, line 19

View source
class ProjectServiceContainer extends Container {

  /**
   * Constructor.
   */
  public function __construct() {
    parent::__construct(new ParameterBag($this
      ->getDefaultParameters()));
  }

  /**
   * 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 'factory_service' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return Object An instance returned by foo.baz::getInstance().
   */
  protected function getFactoryServiceService() {
    return $this->services['factory_service'] = $this
      ->get('foo.baz')
      ->getInstance();
  }

  /**
   * Gets the 'foo' service.
   *
   * @return FooClass A FooClass instance.
   */
  protected function getFooService() {
    $a = $this
      ->get('foo.baz');
    $instance = call_user_func(array(
      'FooClass',
      'getInstance',
    ), 'foo', $a, array(
      $this
        ->getParameter('foo') => 'foo is ' . $this
        ->getParameter('foo'),
      'bar' => $this
        ->getParameter('foo'),
    ), 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 Object A %baz_class% instance.
   */
  protected function getFoo_BazService() {
    $this->services['foo.baz'] = $instance = call_user_func(array(
      $this
        ->getParameter('baz_class'),
      'getInstance',
    ));
    call_user_func(array(
      $this
        ->getParameter('baz_class'),
      'configureStatic1',
    ), $instance);
    return $instance;
  }

  /**
   * Gets the 'foo_bar' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return Object A %foo_class% instance.
   */
  protected function getFooBarService() {
    $class = $this
      ->getParameter('foo_class');
    return $this->services['foo_bar'] = new $class();
  }

  /**
   * 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($this
      ->get('foo2', ContainerInterface::NULL_ON_INVALID_REFERENCE));
    if ($this
      ->has('foo3')) {
      $instance
        ->setBar($this
        ->get('foo3', ContainerInterface::NULL_ON_INVALID_REFERENCE));
    }
    if ($this
      ->has('foobaz')) {
      $instance
        ->setBar($this
        ->get('foobaz', ContainerInterface::NULL_ON_INVALID_REFERENCE));
    }
    return $instance;
  }

  /**
   * Gets the alias_for_foo service alias.
   *
   * @return FooClass An instance of the foo service
   */
  protected function getAliasForFooService() {
    return $this
      ->get('foo');
  }

  /**
   * 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::$loading 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::getParameter public function Gets a parameter. Overrides ContainerInterface::getParameter 1
Container::getParameterBag public function Gets the service container parameter bag. 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::hasParameter public function Checks if a parameter exists. Overrides ContainerInterface::hasParameter 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::setParameter public function Sets a parameter. Overrides ContainerInterface::setParameter 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::getAliasForFooService protected function Gets the alias_for_foo service alias.
ProjectServiceContainer::getBarService protected function Gets the 'bar' service.
ProjectServiceContainer::getDefaultParameters protected function Gets the default parameters.
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::getFoo_BazService protected function Gets the 'foo.baz' service.
ProjectServiceContainer::getMethodCall1Service protected function Gets the 'method_call1' service.
ProjectServiceContainer::__construct public function Constructor. Overrides Container::__construct