From fce7e80cdd137e8afd71a61998a57a3cd5e11ef8 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 16 Jun 2024 21:37:11 +0100 Subject: Register clear cache command --- src/SvgServiceProvider.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/SvgServiceProvider.php b/src/SvgServiceProvider.php index 2fa6a16..9bd604f 100644 --- a/src/SvgServiceProvider.php +++ b/src/SvgServiceProvider.php @@ -3,6 +3,7 @@ namespace Lightscale\LaralightSvg; use Lightscale\LaralightSvg\Http\Controllers\SvgController; +use Lightscale\LaralightSvg\Console\Commands; use Illuminate\Foundation\Console\AboutCommand; use Illuminate\Support\ServiceProvider; @@ -31,6 +32,10 @@ class SvgServiceProvider extends ServiceProvider ], static::NAMESPACE . '-config'); $this->registerRoutes(); + + if ($this->app->runningInConsole()) { + $this->registerCommands(); + } } public function registerRoutes() @@ -39,4 +44,11 @@ class SvgServiceProvider extends ServiceProvider ->name('laralight-svg.serve-svg'); } + public function registerCommands() + { + $this->commands([ + Commands\SvgClearState::class + ]); + } + } -- cgit v1.2.3