summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/SvgCollection.php16
-rw-r--r--src/SvgService.php9
2 files changed, 17 insertions, 8 deletions
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;
+ }
+
}
diff --git a/src/SvgService.php b/src/SvgService.php
index d0efce1..19c9607 100644
--- a/src/SvgService.php
+++ b/src/SvgService.php
@@ -20,11 +20,10 @@ class SvgService
array $collectionConfig
): void
{
- $c = new SvgCollection($collectionName);
-
- foreach ($collectionConfig['paths'] as $p) {
- $c->addPath($p);
- }
+ $c = new SvgCollection(
+ $collectionName,
+ $collectionConfig,
+ );
$this->addCollection($c);
}