Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/ContainerAwareTrait.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
21 /** | 21 /** |
22 * @var ContainerInterface | 22 * @var ContainerInterface |
23 */ | 23 */ |
24 protected $container; | 24 protected $container; |
25 | 25 |
26 /** | |
27 * Sets the container. | |
28 * | |
29 * @param ContainerInterface|null $container A ContainerInterface instance or null | |
30 */ | |
31 public function setContainer(ContainerInterface $container = null) | 26 public function setContainer(ContainerInterface $container = null) |
32 { | 27 { |
33 $this->container = $container; | 28 $this->container = $container; |
34 } | 29 } |
35 } | 30 } |