Skip to content

Commit b07bab8

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: - Update multiple_kernels.rst Add missing use statements
2 parents c3690e3 + 5d5d20c commit b07bab8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

configuration/multiple_kernels.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ resources::
117117
// src/Kernel.php
118118
namespace Shared;
119119

120-
// ...
120+
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
121+
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
121122

122123
class Kernel extends BaseKernel
123124
{
@@ -257,7 +258,8 @@ the application ID to run under CLI context::
257258

258259
// bin/console
259260
use Shared\Kernel;
260-
// ...
261+
use Symfony\Component\Console\Input\InputInterface;
262+
use Symfony\Component\Console\Input\InputOption;
261263

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

0 commit comments

Comments
 (0)