koel/app/Facades/Download.php

19 lines
319 B
PHP
Raw Normal View History

2016-06-02 17:53:26 +00:00
<?php
namespace App\Facades;
use App\Models\Song;
2016-06-02 17:53:26 +00:00
use Illuminate\Support\Facades\Facade;
/**
2024-01-10 23:11:45 +00:00
* @method static string getLocalPath(Song $song)
2024-01-07 12:43:10 +00:00
* @see \App\Services\DownloadService
*/
2016-06-02 17:53:26 +00:00
class Download extends Facade
{
2020-12-22 20:11:22 +00:00
protected static function getFacadeAccessor(): string
2016-06-02 17:53:26 +00:00
{
return 'Download';
}
}