koel/app/Facades/Download.php

18 lines
277 B
PHP
Raw Normal View History

2016-06-02 17:53:26 +00:00
<?php
namespace App\Facades;
use App\Models\Song;
2016-06-02 17:53:26 +00:00
use Illuminate\Support\Facades\Facade;
/**
2022-10-12 09:27:35 +00:00
* @method static string fromSong(Song $song)
*/
2016-06-02 17:53:26 +00:00
class Download extends Facade
{
2020-12-22 20:11:22 +00:00
protected static function getFacadeAccessor(): string
2016-06-02 17:53:26 +00:00
{
return 'Download';
}
}