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/services10.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(
      'test' => 'getTestService',
    );
  }

  /**
   * Gets the 'test' service.
   *
   * This service is shared.
   * This method always returns the same instance of the service.
   *
   * @return stdClass A stdClass instance.
   */
  protected function getTestService() {
    return $this->services['test'] = new \stdClass(array(
      'only dot' => '.',
      'concatenation as value' => '.\'\'.',
      'concatenation from the start value' => '\'\'.',
      '.' => 'dot as a key',
      '.\'\'.' => 'concatenation as a key',
      '\'\'.' => 'concatenation from the start key',
      'optimize concatenation' => 'string1-string2',
      'optimize concatenation with empty string' => 'string1string2',
      'optimize concatenation from the start' => 'start',
      'optimize concatenation at the end' => 'end',
    ));
  }

  /**
   * {@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(
      'empty_value' => '',
      'some_string' => '-',
    );
  }

}

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::getDefaultParameters protected function Gets the default parameters.
ProjectServiceContainer::getParameter public function Gets a parameter. Overrides Container::getParameter
ProjectServiceContainer::getParameterBag public function Gets the service container parameter bag. Overrides Container::getParameterBag
ProjectServiceContainer::getTestService protected function Gets the 'test' service.
ProjectServiceContainer::hasParameter public function Checks if a parameter exists. Overrides Container::hasParameter
ProjectServiceContainer::setParameter public function Sets a parameter. Overrides Container::setParameter
ProjectServiceContainer::__construct public function Constructor. Overrides Container::__construct