composer package updates
[openemr.git] / vendor / symfony / dependency-injection / ContainerAwareTrait.php
blobee1ea2cb3d1487fd3c960de68c9c6dcfde26ea38
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\DependencyInjection;
14 /**
15 * ContainerAware trait.
17 * @author Fabien Potencier <fabien@symfony.com>
19 trait ContainerAwareTrait
21 /**
22 * @var ContainerInterface
24 protected $container;
26 public function setContainer(ContainerInterface $container = null)
28 $this->container = $container;