1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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 'barfactory' service.
- *
- * This service is shared.
- * This method always returns the same instance of the service.
- *
- * @return BarClassFactory A BarClassFactory instance.
- */
- protected function getBarfactoryService()
- {
- return $this->services['barfactory'] = new \BarClassFactory();
- $this->applyInterfaceInjectors($instance);
- }
- /**
- * Gets the 'bar' service.
- *
- * This service is shared.
- * This method always returns the same instance of the service.
- *
- * @return Object An instance returned by barFactory::createBarClass().
- */
- protected function getBarService()
- {
- return $this->services['bar'] = $this->get('barFactory')->createBarClass();
- $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();
- }
- /**
- * Applies all known interface injection calls
- *
- * @param Object $instance
- */
- protected function applyInterfaceInjectors($instance)
- {
- if ($instance instanceof \BarClass) {
- $instance->setFoo('someValue');
- }
- }
- }
|