mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
16 lines
241 B
PHP
16 lines
241 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static bool enabled()
|
|
*/
|
|
class YouTube extends Facade
|
|
{
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return 'YouTube';
|
|
}
|
|
}
|