xref: /plugin/struct/_test/mock/Search.php (revision 25029fe81f6f34e16b537194730735240816a516)
1*25029fe8SAndreas Gohr<?php
2*25029fe8SAndreas Gohr
3*25029fe8SAndreas Gohrnamespace plugin\struct\test\mock;
4*25029fe8SAndreas Gohr
5*25029fe8SAndreas Gohruse \plugin\struct\meta;
6*25029fe8SAndreas Gohr
7*25029fe8SAndreas Gohrclass Search extends meta\Search {
8*25029fe8SAndreas Gohr    public $schemas = array();
9*25029fe8SAndreas Gohr    /** @var  meta\Column[] */
10*25029fe8SAndreas Gohr    public $columns = array();
11*25029fe8SAndreas Gohr
12*25029fe8SAndreas Gohr    public $sortby = array();
13*25029fe8SAndreas Gohr}
14