koel/app/Repositories/RepositoryInterface.php

18 lines
375 B
PHP
Raw Normal View History

2018-08-29 06:15:11 +00:00
<?php
namespace App\Repositories;
use Illuminate\Database\Eloquent\Model;
2022-07-27 15:32:36 +00:00
use Illuminate\Support\Collection;
2018-08-29 06:15:11 +00:00
interface RepositoryInterface
{
public function getOneById($id): ?Model;
2020-12-22 20:11:22 +00:00
/** @return Collection|array<Model> */
2018-08-29 06:15:11 +00:00
public function getByIds(array $ids): Collection;
2020-12-22 20:11:22 +00:00
/** @return Collection|array<Model> */
2018-08-29 06:15:11 +00:00
public function getAll(): Collection;
}