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-1.php

52 lines
1.2 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
2017-05-07 17:03:57 +01:00
namespace Symfony\Component\DependencyInjection\Dump;
2010-01-04 14:26:20 +00:00
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
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
* Container.
2010-01-04 14:26:20 +00:00
*
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
*
* @final since Symfony 3.3
2010-01-04 14:26:20 +00:00
*/
class Container extends AbstractContainer
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 container that was already compiled.');
}
/**
* {@inheritdoc}
*/
public function isCompiled()
{
return true;
}
2010-01-04 14:26:20 +00:00
}