From bf7f0af3fde5fc3f253685c2905653cd953b37a5 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 16 Jun 2024 21:36:52 +0100 Subject: Created command to clear svg cache --- src/Console/Commands/SvgClearState.php | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/Console/Commands/SvgClearState.php 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 @@ +argument('collection'); + + if ($collection === null) { + foreach ($this->svg->getCollections() as $collection) { + $collection->clearState(); + } + } + else { + $this->svg->getCollection($collection)->clearState(); + } + + return Command::SUCCESS; + } + +} -- cgit v1.2.3