2016-06-03 01:53:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Facades;
|
|
|
|
|
2019-06-30 11:44:39 +02:00
|
|
|
use App\Models\Song;
|
2016-06-03 01:53:26 +08:00
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
|
2019-06-30 11:44:39 +02:00
|
|
|
/**
|
2022-10-12 11:27:35 +02:00
|
|
|
* @method static string fromSong(Song $song)
|
2024-01-07 13:43:10 +01:00
|
|
|
* @see \App\Services\DownloadService
|
2019-06-30 11:44:39 +02:00
|
|
|
*/
|
2016-06-03 01:53:26 +08:00
|
|
|
class Download extends Facade
|
|
|
|
{
|
2020-12-22 21:11:22 +01:00
|
|
|
protected static function getFacadeAccessor(): string
|
2016-06-03 01:53:26 +08:00
|
|
|
{
|
|
|
|
return 'Download';
|
|
|
|
}
|
|
|
|
}
|