koel/app/Repositories/RepositoryInterface.php

24 lines
430 B
PHP
Raw Normal View History

2018-08-29 06:15:11 +00:00
<?php
namespace App\Repositories;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
interface RepositoryInterface
{
public function getModelClass(): string;
/**
* @param int|string $id
*/
public function getOneById($id): ?Model;
/**
* @param int[]|string[] $ids
*/
public function getByIds(array $ids): Collection;
public function getAll(): Collection;
}