koel/app/Facades/Download.php

19 lines
315 B
PHP
Raw Normal View History

2016-06-03 01:53:26 +08:00
<?php
namespace App\Facades;
use App\Models\Song;
2016-06-03 01:53:26 +08:00
use Illuminate\Support\Facades\Facade;
/**
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
*/
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';
}
}