Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
37 { | 37 { |
38 if (!$container->has('services_resetter')) { | 38 if (!$container->has('services_resetter')) { |
39 return; | 39 return; |
40 } | 40 } |
41 | 41 |
42 $services = $methods = array(); | 42 $services = $methods = []; |
43 | 43 |
44 foreach ($container->findTaggedServiceIds($this->tagName, true) as $id => $tags) { | 44 foreach ($container->findTaggedServiceIds($this->tagName, true) as $id => $tags) { |
45 $services[$id] = new Reference($id, ContainerInterface::IGNORE_ON_UNINITIALIZED_REFERENCE); | 45 $services[$id] = new Reference($id, ContainerInterface::IGNORE_ON_UNINITIALIZED_REFERENCE); |
46 $attributes = $tags[0]; | 46 $attributes = $tags[0]; |
47 | 47 |