comparison vendor/symfony/dependency-injection/ContainerAwareInterface.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 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
16 * 16 *
17 * @author Fabien Potencier <fabien@symfony.com> 17 * @author Fabien Potencier <fabien@symfony.com>
18 */ 18 */
19 interface ContainerAwareInterface 19 interface ContainerAwareInterface
20 { 20 {
21 /**
22 * Sets the container.
23 *
24 * @param ContainerInterface|null $container A ContainerInterface instance or null
25 */
26 public function setContainer(ContainerInterface $container = null); 21 public function setContainer(ContainerInterface $container = null);
27 } 22 }