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/tests/Symfony/Tests/Component/DependencyInjection/Fixtures/php/services_interfaces-2.php

84 lines
2.1 KiB
PHP
Executable File

<?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');
}
}
}