]> Raphaël G. Git Repositories - blog/commitdiff
Add Kernel
authorRaphaël Gertz <git@rapsys.eu>
Sun, 28 Jan 2024 04:29:17 +0000 (05:29 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Sun, 28 Jan 2024 04:29:17 +0000 (05:29 +0100)
src/Kernel.php [new file with mode: 0644]

diff --git a/src/Kernel.php b/src/Kernel.php
new file mode 100644 (file)
index 0000000..779cd1f
--- /dev/null
@@ -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;
+}