koel/app/Facades/Download.php
2019-06-30 12:18:48 +02:00

17 lines
262 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()
{
return 'Download';
}
}