File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change 1
- <?php
2
-
3
- /**
4
- * This is a helper file that can be required by other config files to determine the debug status.
5
- */
6
-
7
- declare (strict_types=1 );
8
-
9
- $ path = getcwd () . '/config/development.config.php ' ;
10
- if (! file_exists ($ path )) {
11
- return [
12
- '_debug ' => false ,
13
- ];
14
- }
15
-
16
- $ config = require $ path ;
17
- return [
18
- '_debug ' => $ config ['debug ' ] ?? false ,
19
- ];
1
+ <?php
2
+
3
+ /**
4
+ * This is a helper file that can be required by other config files to determine the debug status.
5
+ */
6
+
7
+ declare (strict_types=1 );
8
+
9
+ $ path = getcwd () . '/config/development.config.php ' ;
10
+ if (! file_exists ($ path )) {
11
+ return [
12
+ '_debug ' => false ,
13
+ ];
14
+ }
15
+
16
+ $ config = require $ path ;
17
+ return [
18
+ '_debug ' => $ config ['debug ' ] ?? false ,
19
+ ];
You can’t perform that action at this time.
0 commit comments