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