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 3fab290 commit 677ac78Copy full SHA for 677ac78
src/Console/ClearCommand.php
@@ -18,6 +18,8 @@ public function __construct(DebugBar $debugbar)
18
19
public function fire()
20
{
21
+ $this->debugbar->boot();
22
+
23
if ($storage = $this->debugbar->getStorage()) {
24
$storage->clear();
25
$this->info('Debugbar Storage cleared!');
src/ServiceProvider.php
@@ -61,7 +61,7 @@ public function boot()
61
$this->publishes([$configPath => $this->getConfigPath()], 'config');
62
63
if ($app->runningInConsole()) {
64
- $this->app['config']->set('debugbar.enabled', false);
+ return;
65
}
66
67
$routeConfig = [
0 commit comments