Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b82dce4

Browse filesBrowse 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
Copy full SHA for b82dce4

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed

‎configuration/multiple_kernels.rst

Copy file name to clipboardExpand all lines: configuration/multiple_kernels.rst
+2-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.