mirror of
https://github.com/koel/koel
synced 2025-02-17 22:08:28 +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 Exception;
|
||||||
use Illuminate\Contracts\Auth\Guard;
|
use Illuminate\Contracts\Auth\Guard;
|
||||||
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
abstract class AbstractRepository implements RepositoryInterface
|
abstract class AbstractRepository implements RepositoryInterface
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,7 +7,7 @@ use App\Models\Artist;
|
||||||
use App\Models\Playlist;
|
use App\Models\Playlist;
|
||||||
use App\Models\Song;
|
use App\Models\Song;
|
||||||
use App\Models\SongZipArchive;
|
use App\Models\SongZipArchive;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
use InvalidArgumentException;
|
use InvalidArgumentException;
|
||||||
|
|
||||||
class DownloadService
|
class DownloadService
|
||||||
|
|
Loading…
Add table
Reference in a new issue