File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ if ($_SERVER['APP_DEBUG']) {
3535 }
3636}
3737
38- $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], $ _SERVER ['APP_DEBUG ' ]);
38+ $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], ( bool ) $ _SERVER ['APP_DEBUG ' ]);
3939$ application = new Application ($ kernel );
4040$ application ->run ($ input );
Original file line number Diff line number Diff line change 2020 Request::setTrustedHosts ([$ trustedHosts ]);
2121}
2222
23- $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], $ _SERVER ['APP_DEBUG ' ]);
23+ $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], ( bool ) $ _SERVER ['APP_DEBUG ' ]);
2424$ request = Request::createFromGlobals ();
2525$ response = $ kernel ->handle ($ request );
2626$ response ->send ();
Original file line number Diff line number Diff line change 2020 Request::setTrustedHosts ([$ trustedHosts ]);
2121}
2222
23- $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], $ _SERVER ['APP_DEBUG ' ]);
23+ $ kernel = new Kernel ($ _SERVER ['APP_ENV ' ], ( bool ) $ _SERVER ['APP_DEBUG ' ]);
2424$ request = Request::createFromGlobals ();
2525$ response = $ kernel ->handle ($ request );
2626$ response ->send ();
You can’t perform that action at this time.
0 commit comments