mirror of
https://github.com/koel/koel
synced 2024-12-03 01:09:23 +00:00
14 lines
186 B
PHP
14 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Facades;
|
||
|
|
||
|
use Illuminate\Support\Facades\Facade;
|
||
|
|
||
|
class Util extends Facade
|
||
|
{
|
||
|
protected static function getFacadeAccessor()
|
||
|
{
|
||
|
return 'Util';
|
||
|
}
|
||
|
}
|