diff options
-rw-r--r-- | src/Console/Commands/SvgClearState.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Console/Commands/SvgClearState.php b/src/Console/Commands/SvgClearState.php new file mode 100644 index 0000000..dc67136 --- /dev/null +++ b/src/Console/Commands/SvgClearState.php @@ -0,0 +1,38 @@ +<?php + +namespace Lightscale\LaralightSvg\Console\Commands; + +use Lightscale\LaralightSvg\SvgService; +use Lightscale\LaralightSvg\SvgCollection; + +use Illuminate\Console\Command; + +class SvgClearState extends Command +{ + protected $signature = 'svg:clear {collection?}'; + + protected $description = 'Clear svg state stored in cache'; + + public function __construct( + protected SvgService $svg, + ) { + parent::__construct(); + } + + public function handle() + { + $collection = $this->argument('collection'); + + if ($collection === null) { + foreach ($this->svg->getCollections() as $collection) { + $collection->clearState(); + } + } + else { + $this->svg->getCollection($collection)->clearState(); + } + + return Command::SUCCESS; + } + +} |