minor #16466 [HttpKernel] Keep 3.0 compat by not using ContainerAware (nicolas-grekas)

This PR was merged into the 2.8 branch.

Discussion
----------

[HttpKernel] Keep 3.0 compat by not using ContainerAware

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Commits
-------

31a0669 [HttpKernel] Keep 3.0 compat by not using ContainerAware
This commit is contained in:
Fabien Potencier 2015-11-04 21:18:12 +01:00
commit df9d0821b0

View File

@ -11,7 +11,7 @@
namespace Symfony\Component\HttpKernel\Bundle;
use Symfony\Component\DependencyInjection\ContainerAware;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\Console\Application;
@ -24,8 +24,12 @@ use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
*
* @author Fabien Potencier <fabien@symfony.com>
*/
abstract class Bundle extends ContainerAware implements BundleInterface
abstract class Bundle implements BundleInterface
{
/**
* @var ContainerInterface
*/
protected $container;
protected $name;
protected $extension;
protected $path;
@ -58,6 +62,16 @@ abstract class Bundle extends ContainerAware implements BundleInterface
{
}
/**
* Sets the container.
*
* @param ContainerInterface|null $container A ContainerInterface instance or null
*/
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}
/**
* Returns the bundle's container extension.
*