cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Criteria;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Pterodactyl\Repositories\Repository;
|
|
|
|
interface CriteriaInterface
|
|
{
|
|
/**
|
|
* Apply selected criteria to a repository call.
|
|
*/
|
|
public function apply(Model $model, Repository $repository): mixed;
|
|
}
|