Mercurial > hg > cmmr2012-drupal-site
comparison vendor/symfony/http-kernel/DependencyInjection/ResettableServicePass.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | c75dbcec494b |
children |
comparison
equal
deleted
inserted
replaced
3:307d7a7fd348 | 4:a9cd425dd02b |
---|---|
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 |