| 1 | <?php namespace JobApis\Jobs\Client\Queries;  | 
            ||
| 3 | class MonsterQuery extends AbstractQuery  | 
            ||
| 4 | { | 
            ||
| 5 | /**  | 
            ||
| 6 | * q  | 
            ||
| 7 | *  | 
            ||
| 8 | * The search query.  | 
            ||
| 9 | *  | 
            ||
| 10 | * @var string  | 
            ||
| 11 | */  | 
            ||
| 12 | protected $q;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * where  | 
            ||
| 16 | *  | 
            ||
| 17 | * The search location.  | 
            ||
| 18 | *  | 
            ||
| 19 | * @var string  | 
            ||
| 20 | */  | 
            ||
| 21 | protected $where;  | 
            ||
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * page  | 
            ||
| 25 | *  | 
            ||
| 26 | * Page  | 
            ||
| 27 | *  | 
            ||
| 28 | * @var integer  | 
            ||
| 29 | */  | 
            ||
| 30 | protected $page;  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * Get baseUrl  | 
            ||
| 34 | *  | 
            ||
| 35 | * @return string Value of the base url to this api  | 
            ||
| 36 | */  | 
            ||
| 37 | 6 | public function getBaseUrl()  | 
            |
| 41 | |||
| 42 | /**  | 
            ||
| 43 | * Get keyword  | 
            ||
| 44 | *  | 
            ||
| 45 | * @return string Attribute being used as the search keyword  | 
            ||
| 46 | */  | 
            ||
| 47 | 4 | public function getKeyword()  | 
            |
| 51 | |||
| 52 | /**  | 
            ||
| 53 | * Required parameters  | 
            ||
| 54 | *  | 
            ||
| 55 | * @return array  | 
            ||
| 56 | */  | 
            ||
| 57 | 6 | protected function requiredAttributes()  | 
            |
| 63 | }  | 
            ||
| 64 |