summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-06-16 21:36:52 +0100
committerSam Light <samlight1994@gmail.com>2024-06-16 21:36:52 +0100
commitbf7f0af3fde5fc3f253685c2905653cd953b37a5 (patch)
tree50c95dce8a1e6d42d5b9815ffb70f13f9351cce3 /src
parent2cc8c1a8ea904ec2de857ede865a7bccc0000de4 (diff)
Created command to clear svg cache
Diffstat (limited to 'src')
-rw-r--r--src/Console/Commands/SvgClearState.php38
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;
+ }
+
+}