mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
17 lines
262 B
PHP
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';
|
|
}
|
|
}
|