From 015d8d7e869b015e08080396d75ec9d177df6bdc Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 10 Apr 2020 22:02:31 +0200 Subject: [PATCH 1/2] =?UTF-8?q?[DI]=20=C2=B5fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Component/DependencyInjection/Loader/YamlFileLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php index 5a011c04ddaa..ca52ff36c0db 100644 --- a/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php @@ -355,7 +355,7 @@ private function parseDefinition($id, $service, $file, array $defaults) if (isset($service['alias'])) { $this->container->setAlias($id, $alias = new Alias($service['alias'])); - if (\array_key_exists('public', $service)) { + if (isset($service['public'])) { $alias->setPublic($service['public']); } elseif (isset($defaults['public'])) { $alias->setPublic($defaults['public']); From 8920f183fbb6489f622d94f5637e82bb36fc12fa Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 10 Apr 2020 22:35:26 +0200 Subject: [PATCH 2/2] [appveyor] bump cache --- phpunit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit b/phpunit index c89d2e400b60..fbce26d8edcc 100755 --- a/phpunit +++ b/phpunit @@ -1,7 +1,7 @@ #!/usr/bin/env php