芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/barryvdh/laravel-debugbar/src/Console/ClearCommand.php
debugbar = $debugbar; parent::__construct(); } public function handle() { $this->debugbar->boot(); if ($storage = $this->debugbar->getStorage()) { try { $storage->clear(); } catch (\InvalidArgumentException $e) { // hide InvalidArgumentException if storage location does not exist if (strpos($e->getMessage(), 'does not exist') === false) { throw $e; } } $this->info('Debugbar Storage cleared!'); } else { $this->error('No Debugbar Storage found..'); } } }