Rapsys Git
/
blog
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5c581e
)
Add Kernel
author
Raphaël Gertz
<git@rapsys.eu>
Sun, 28 Jan 2024 04:29:17 +0000
(
05:29
+0100)
committer
Raphaël Gertz
<git@rapsys.eu>
Sun, 28 Jan 2024 04:29:17 +0000
(
05:29
+0100)
src/Kernel.php
[new file with mode: 0644]
patch
|
blob
diff --git a/src/Kernel.php
b/src/Kernel.php
new file mode 100644
(file)
index 0000000..
779cd1f
--- /dev/null
+++ b/
src/Kernel.php
@@ -0,0
+1,11
@@
+<?php
+
+namespace App;
+
+use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
+use Symfony\Component\HttpKernel\Kernel as BaseKernel;
+
+class Kernel extends BaseKernel
+{
+ use MicroKernelTrait;
+}