koel/app/Facades/Download.php
2022-10-12 14:33:41 +02:00

17 lines
277 B
PHP

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