summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2024-06-16 21:37:22 +0100
committerSam Light <samlight1994@gmail.com>2024-06-16 21:37:22 +0100
commit53a18d36f6fef9dc5e24e3efea88d3a50c95e22c (patch)
tree1c566190afb361fb02b73e2fd79d036a131a0f27 /src
parentfce7e80cdd137e8afd71a61998a57a3cd5e11ef8 (diff)
Created get collections method
Diffstat (limited to 'src')
-rw-r--r--src/SvgService.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/SvgService.php b/src/SvgService.php
index 4d8afe0..d0efce1 100644
--- a/src/SvgService.php
+++ b/src/SvgService.php
@@ -54,5 +54,9 @@ class SvgService
return $this->collections[$collection] ?? null;
}
+ public function getCollections(): array
+ {
+ return $this->collections;
+ }
}