mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
18 lines
319 B
PHP
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';
|
|
}
|
|
}
|