From f7e33f3456406910cba9c4441083191e8d03122d Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sun, 16 Jun 2024 22:27:38 +0100 Subject: Better way to load SvgCollections --- src/SvgCollection.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/SvgCollection.php') diff --git a/src/SvgCollection.php b/src/SvgCollection.php index fdf0664..e67c53c 100644 --- a/src/SvgCollection.php +++ b/src/SvgCollection.php @@ -6,14 +6,19 @@ use Illuminate\Support\Facades\Storage; class SvgCollection { - protected array $paths = []; + protected array $paths; + protected int $maxAge; private ?SvgCollectionState $state = null; public function __construct( - private readonly string $name + private readonly string $name, + array $config = [], ) - {} + { + $this->paths = $config['paths'] ?? []; + $this->maxAge = $config['max_age'] ?? config('svg.default_max_age', 0); + } public function addPath(string $path) { @@ -101,4 +106,9 @@ class SvgCollection $this->getState()->clear(); } + public function getMaxAge(): int + { + return $this->maxAge; + } + } -- cgit v1.2.3