12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\TaggedContainerInterface;
- use Symfony\Component\DependencyInjection\Container;
- use Symfony\Component\DependencyInjection\Reference;
- use Symfony\Component\DependencyInjection\Parameter;
- use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
- /**
- * ProjectServiceContainer
- *
- * This class has been auto-generated
- * by the Symfony Dependency Injection Component.
- */
- class ProjectServiceContainer extends Container implements TaggedContainerInterface
- {
- /**
- * Constructor.
- */
- public function __construct()
- {
- parent::__construct(new ParameterBag($this->getDefaultParameters()));
- }
- /**
- * Gets the 'foo' service.
- *
- * This service is shared.
- * This method always returns the same instance of the service.
- *
- * @return Object A %cla%o%ss% instance.
- */
- protected function getFooService()
- {
- $class = $this->getParameter('cla').'o'.$this->getParameter('ss');
- return $this->services['foo'] = new $class();
- $this->applyInterfaceInjectors($instance);
- }
- /**
- * Returns service ids for a given tag.
- *
- * @param string $name The tag name
- *
- * @return array An array of tags
- */
- public function findTaggedServiceIds($name)
- {
- static $tags = array(
- );
- return isset($tags[$name]) ? $tags[$name] : array();
- }
- /**
- * Gets the default parameters.
- *
- * @return array An array of the default parameters
- */
- protected function getDefaultParameters()
- {
- return array(
- 'cla' => 'Fo',
- 'ss' => 'Class',
- );
- }
- /**
- * Applies all known interface injection calls
- *
- * @param Object $instance
- */
- protected function applyInterfaceInjectors($instance)
- {
- if ($instance instanceof \FooClass) {
- $instance->setBar('someValue');
- }
- }
- }
|