We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf874b commit 72ab86eCopy full SHA for 72ab86e
symfony/framework-bundle/8.1/src/Kernel.php
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+namespace App;
4
5
+use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
6
+use Symfony\Component\HttpKernel\Kernel as BaseKernel;
7
8
+class Kernel extends BaseKernel
9
+{
10
+ use MicroKernelTrait;
11
12
+ /**
13
+ * @return list<string> An array of allowed values for APP_ENV
14
+ */
15
+ private function getAllowedEnvs(): array
16
+ {
17
+ return ['prod', 'dev', 'test'];
18
+ }
19
+}
0 commit comments