koel/app/Repositories/RepositoryInterface.php

20 lines
439 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 getOne($id): Model;
public function findOne($id): ?Model;
2018-08-29 06:15:11 +00:00
2020-12-22 20:11:22 +00:00
/** @return Collection|array<Model> */
public function getMany(array $ids, bool $inThatOrder = false): Collection;
2018-08-29 06:15:11 +00:00
2020-12-22 20:11:22 +00:00
/** @return Collection|array<Model> */
2018-08-29 06:15:11 +00:00
public function getAll(): Collection;
}