services12.php in Service Container 7.2        
                          
                  
                        
  
  
  
File
  modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services12.php
  
    View source  
  <?php
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
class ProjectServiceContainer extends Container {
  private $parameters;
  private $targetDirs = array();
  
  public function __construct() {
    $dir = __DIR__;
    for ($i = 1; $i <= 5; ++$i) {
      $this->targetDirs[$i] = $dir = dirname($dir);
    }
    $this->parameters = $this
      ->getDefaultParameters();
    $this->services = $this->scopedServices = $this->scopeStacks = array();
    $this->scopes = array();
    $this->scopeChildren = array();
    $this->methodMap = array(
      'test' => 'getTestService',
    );
    $this->aliases = array();
  }
  
  public function compile() {
    throw new LogicException('You cannot compile a dumped frozen container.');
  }
  
  protected function getTestService() {
    return $this->services['test'] = new \stdClass('wiz' . $this->targetDirs[1], array(
      'wiz' . $this->targetDirs[1] => $this->targetDirs[2] . '/',
    ));
  }
  
  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];
  }
  
  public function hasParameter($name) {
    $name = strtolower($name);
    return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters);
  }
  
  public function setParameter($name, $value) {
    throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
  }
  
  public function getParameterBag() {
    if (null === $this->parameterBag) {
      $this->parameterBag = new FrozenParameterBag($this->parameters);
    }
    return $this->parameterBag;
  }
  
  protected function getDefaultParameters() {
    return array(
      'foo' => 'wiz' . $this->targetDirs[1],
      'bar' => __DIR__,
      'baz' => __DIR__ . '/PhpDumperTest.php',
      'buz' => $this->targetDirs[2],
    );
  }
}