summaryrefslogtreecommitdiff
path: root/src/Facades/Assets.php
blob: a4757c23eef8465c5ccf2cd029c914bbf9284314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Lightscale\LaralightAssets\Facades;

use Illuminate\Support\Facades\Facade;

class Assets extends Facade
{
    protected static function getFacadeAccessor(): string
    {
        return \Lightscale\LaralightAssets\Assets::class;
    }
}