File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed
src/Symfony/Component/HttpKernel Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 16
16
use Symfony \Component \Kernel \Kernel as BaseKernel ;
17
17
18
18
/**
19
- * The Kernel is the heart of the Symfony system.
19
+ * The HTTP Kernel is the heart of the Symfony system to handle HTTP request .
20
20
*
21
- * It manages an environment made of bundles.
21
+ * It manages an environment made of application kernel and bundles.
22
22
*
23
23
* @author Fabien Potencier <fabien@symfony.com>
24
24
*/
25
- abstract class Kernel extends BaseKernel implements HttpKernelInterface , TerminableInterface
25
+ abstract class Kernel extends BaseKernel implements KernelInterface , TerminableInterface
26
26
{
27
27
/**
28
28
* {@inheritdoc}
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony \Component \HttpKernel ;
13
+
14
+ use Symfony \Component \Kernel \KernelInterface as BaseKernelInterface ;
15
+
16
+ /**
17
+ * The HTTP Kernel is the heart of the Symfony system to handle HTTP request.
18
+ *
19
+ * It manages an environment made of application kernel and bundles.
20
+ *
21
+ * @author Fabien Potencier <fabien@symfony.com>
22
+ */
23
+ interface KernelInterface extends BaseKernelInterface, HttpKernelInterface
24
+ {
25
+ }
Original file line number Diff line number Diff line change 5
5
6
6
// Naïve implementation of the BC layer
7
7
8
- class_alias (Kernel \KernelInterface::class, HttpKernel \KernelInterface::class);
9
8
class_alias (Kernel \RebootableInterface::class, HttpKernel \RebootableInterface::class);
10
9
11
10
class_alias (Kernel \Bundle \BundleInterface::class, HttpKernel \Bundle \BundleInterface::class);
You can’t perform that action at this time.
0 commit comments