for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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';
}