koel/app/Facades/Download.php
2020-12-22 21:11:22 +01:00

17 lines
270 B
PHP

<?php
namespace App\Facades;
use App\Models\Song;
use Illuminate\Support\Facades\Facade;
/**
* @method static fromSong(Song $song)
*/
class Download extends Facade
{
protected static function getFacadeAccessor(): string
{
return 'Download';
}
}