diff options
author | Sam Light <samlight1994@gmail.com> | 2024-06-15 23:02:17 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2024-06-15 23:02:17 +0100 |
commit | f07af8db3b58bafb840ddcbc23cda5e6644feaff (patch) | |
tree | d468950c0de043255e25fe895a997d02bec50a1a | |
parent | b85ca64f6b941be457b815b45f14c61da9e97803 (diff) |
Created SvgService facade
-rw-r--r-- | src/Facades/Svg.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Facades/Svg.php b/src/Facades/Svg.php new file mode 100644 index 0000000..a0a8f13 --- /dev/null +++ b/src/Facades/Svg.php @@ -0,0 +1,15 @@ +<?php + +namespace Lightscale\LaralightSvg\Facades; + +use Lightscale\LaralightSvg\SvgService; + +use Illuminate\Support\Facades\Facade; + +class Svg extends Facade +{ + protected static function getFacadeAccessor(): string + { + return SvgService::class; + } +} |