app/Facades/Download.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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';
    }
}