mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
16 lines
259 B
PHP
16 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static string detectUTFEncoding(string $name)
|
|
*/
|
|
class Util extends Facade
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return 'Util';
|
|
}
|
|
}
|