mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
Fix return type
This commit is contained in:
parent
48e5df7228
commit
d4c68e33e5
2 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@ namespace App\Repositories;
|
|||
|
||||
use Exception;
|
||||
use Illuminate\Contracts\Auth\Guard;
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Collection;
|
||||
|
||||
abstract class AbstractRepository implements RepositoryInterface
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ use App\Models\Artist;
|
|||
use App\Models\Playlist;
|
||||
use App\Models\Song;
|
||||
use App\Models\SongZipArchive;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use InvalidArgumentException;
|
||||
|
||||
class DownloadService
|
||||
|
|
Loading…
Reference in a new issue