Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\DependencyInjection; Chris@0: Chris@0: /** Chris@0: * ContainerAwareInterface should be implemented by classes that depends on a Container. Chris@0: * Chris@0: * @author Fabien Potencier Chris@0: */ Chris@0: interface ContainerAwareInterface Chris@0: { Chris@17: /** Chris@17: * Sets the container. Chris@17: */ Chris@0: public function setContainer(ContainerInterface $container = null); Chris@0: }