Skip to content

Commit b82dce4

Browse files
committed
minor #19227 Add missing use statements (npotier)
This PR was submitted for the 7.0 branch but it was squashed and merged into the 5.4 branch instead. Discussion ---------- Add missing use statements add required namespaces to doc <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> Commits ------- bc023ee Add missing use statements
2 parents aa6b8c7 + bc023ee commit b82dce4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

configuration/multiple_kernels.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ the application ID to run under CLI context::
257257

258258
// bin/console
259259
use Shared\Kernel;
260-
// ...
260+
use Symfony\Component\Console\Input\InputInterface;
261+
use Symfony\Component\Console\Input\InputOption;
261262

262263
return function (InputInterface $input, array $context) {
263264
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG'], $input->getParameterOption(['--id', '-i'], $context['APP_ID']));

0 commit comments

Comments
 (0)