summaryrefslogtreecommitdiff
path: root/src/SvgService.php
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-06-16 22:27:38 +0100
committerSam Light <samlight1994@gmail.com>2024-06-16 22:27:38 +0100
commitf7e33f3456406910cba9c4441083191e8d03122d (patch)
tree911f61b0fa3330394300396aa7df292c0afbc79b /src/SvgService.php
parent75b5f823043990ef9ddd4a120d420552fd00f0c5 (diff)
Better way to load SvgCollections
Diffstat (limited to 'src/SvgService.php')
-rw-r--r--src/SvgService.php9
1 files changed, 4 insertions, 5 deletions
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);
}