mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
13 lines
192 B
PHP
13 lines
192 B
PHP
<?php
|
|
|
|
namespace App\Facades;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class YouTube extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'YouTube';
|
|
}
|
|
}
|