koel/app/Facades/Download.php
2024-01-11 20:29:14 +01:00

18 lines
319 B
PHP

<?php
namespace App\Facades;
use App\Models\Song;
use Illuminate\Support\Facades\Facade;
/**
* @method static string getLocalPath(Song $song)
* @see \App\Services\DownloadService
*/
class Download extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'Download';
}
}