8000 Fix merge · symfony/symfony@a2ded28 · GitHub
[go: up one dir, main page]

Skip to content

Commit a2ded28

Browse files
Fix merge
1 parent 6f73287 commit a2ded28

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