2016-06-02 17:53:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Facades;
|
|
|
|
|
2019-06-30 09:44:39 +00:00
|
|
|
use App\Models\Song;
|
2016-06-02 17:53:26 +00:00
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
2019-06-30 09:44:39 +00:00
|
|
|
/**
|
2022-10-12 09:27:35 +00:00
|
|
|
* @method static string fromSong(Song $song)
|
2024-01-07 12:43:10 +00:00
|
|
|
* @see \App\Services\DownloadService
|
2019-06-30 09:44:39 +00:00
|
|
|
*/
|
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';
|
|
|
|
}
|
|
|
|
}
|