This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php

47 lines
1.0 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
2010-01-04 14:26:20 +00:00
/**
2015-03-24 21:20:39 +00:00
* ProjectServiceContainer.
2010-01-04 14:26:20 +00:00
*
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
*/
class ProjectServiceContainer extends Container
2010-01-04 14:26:20 +00:00
{
private $parameters;
private $targetDirs = array();
2010-06-27 17:28:29 +01:00
/**
* Constructor.
*/
public function __construct()
{
$this->services = array();
$this->aliases = array();
}
/**
* {@inheritdoc}
*/
public function compile()
{
throw new LogicException('You cannot compile a dumped frozen container.');
}
/**
* {@inheritdoc}
*/
public function isFrozen()
{
return true;
2010-06-27 17:28:29 +01:00
}
2010-01-04 14:26:20 +00:00
}