1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- use Symfony\Component\DependencyInjection\ContainerInterface;
- 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
- {
- /**
- * 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);
- }
- /**
- * 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');
- }
- }
- }
|