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.
2 parents 26deda1 + c4d9fd2 commit 35ee607Copy full SHA for 35ee607
phpunit.xml.dist
@@ -13,5 +13,6 @@
13
</testsuites>
14
<php>
15
<env name="APP_KEY" value="base64:uz4B1RtFO57QGzbZX1kRYX9hIRB50+QzqFeg9zbFJlY="/>
16
+ <env name="APP_DEBUG" value="true"/>
17
</php>
18
</phpunit>
src/BoostServiceProvider.php
@@ -55,7 +55,7 @@ public function register(): void
55
56
public function boot(Router $router): void
57
{
58
- if (! app()->environment('local', 'testing')) {
+ if (config('app.debug', false) !== true) {
59
return;
60
}
61
0 commit comments