Skip to content

Commit cd1f2ca

Browse files
Merge branch '5.2' into 5.x
* 5.2: Fix merge
2 parents 6ce03bc + a607186 commit cd1f2ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)