Skip to content

Commit c828a86

Browse files
authored
doc: add missing use statements
1 parent 856a805 commit c828a86

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

configuration/multiple_kernels.rst

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

120+
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
120121
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
121122
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
123+
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
122124

123125
class Kernel extends BaseKernel
124126
{
@@ -258,6 +260,7 @@ the application ID to run under CLI context::
258260

259261
// bin/console
260262
use Shared\Kernel;
263+
use Symfony\Bundle\FrameworkBundle\Console\Application;
261264
use Symfony\Component\Console\Input\InputInterface;
262265
use Symfony\Component\Console\Input\InputOption;
263266

0 commit comments

Comments
 (0)