| 1 | <?php |
||
| 21 | abstract class SearchCommand extends EntityCommand |
||
| 22 | { |
||
| 23 | public $select; |
||
| 24 | public $limit; |
||
| 25 | public $page; |
||
| 26 | public $where = []; |
||
| 27 | public $filter = []; |
||
| 28 | public $with = []; |
||
| 29 | public $include = []; |
||
| 30 | public $count; |
||
| 31 | |||
| 32 | public function rules() |
||
| 57 | |||
| 58 | public function getSpecification(): Specification |
||
| 69 | } |
||
| 70 |