Skip to content

Commit 7c1a49a

Browse files
Fix merge
1 parent 814ebeb commit 7c1a49a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Command/ConfigDebugCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ public function complete(CompletionInput $input, CompletionSuggestions $suggesti
197197

198198
if ($input->mustSuggestArgumentValuesFor('path') && null !== $name = $input->getArgument('name')) {
199199
try {
200-
$config = $this->getConfig($this->findExtension($name), $this->compileContainer());
200+
$container = $this->compileContainer();
201+
$config = $this->getConfig($this->findExtension($name, $container), $container);
201202
$paths = array_keys(self::buildPathsCompletion($config));
202203
$suggestions->suggestValues($paths);
203204
} catch (LogicException $e) {

0 commit comments

Comments
 (0)