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/SvgService.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/SvgService.php') 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); } -- cgit v1.2.3