orkhanahmadov/eloquent-repository

View on GitHub
src/Repository/Criteria/Criteria.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Orkhanahmadov\EloquentRepository\Repository\Criteria;

interface Criteria
{
    /**
     * @param mixed ...$criteria
     *
     * @return $this
     */
    public function withCriteria(...$criteria): self;
}