8000 Merge branch '5.1' into 5.2 · symfony/symfony@00f99bd · GitHub
[go: up one dir, main page]

Skip to content

Commit 00f99bd

Browse files
Merge branch '5.1' into 5.2
* 5.1: Fix merge
2 parents a5ef152 + a2ded28 commit 00f99bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private function parseDefinition(string $id, $service, string $file, array $defa
356356
$stack = [];
357357

358358
foreach ($service['stack'] as $k => $frame) {
359-
if (\is_array($frame) && 1 === \count($frame) && !isset(self::$serviceKeywords[key($frame)])) {
359+
if (\is_array($frame) && 1 === \count($frame) && !isset(self::SERVICE_KEYWORDS[key($frame)])) {
360360
$frame = [
361361
'class' => key($frame),
362362
'arguments' => current($frame),

0 commit comments

Comments
 (0)
0