diff options
Diffstat (limited to 'src/Facades/Svg.php')
-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; + } +} |