2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
|
|
|
|
2017-06-11 03:28:44 +00:00
|
|
|
namespace Pterodactyl\Contracts\Criteria;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-06-11 03:28:44 +00:00
|
|
|
use Pterodactyl\Repositories\Repository;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-06-11 03:28:44 +00:00
|
|
|
interface CriteriaInterface
|
|
|
|
{
|
2017-03-19 23:36:50 +00:00
|
|
|
/**
|
2017-06-11 03:28:44 +00:00
|
|
|
* Apply selected criteria to a repository call.
|
2017-03-19 23:36:50 +00:00
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function apply(Model $model, Repository $repository): mixed;
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|