for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace JobApis\Jobs\Client\Queries;
class StackoverflowQuery extends AbstractQuery
{
/**
* q
*
* The search query.
* @var string
*/
protected $q;
* l
* The search location.
protected $l;
* pg
* Page number
* @var integer
protected $pg;
* d
* Distance from location
protected $d;
* sort
* Sort order. Should be one of the following:
* "p" = newest
* "i" = match
* "y" = salary
protected $sort;
* u
* Unit of distance ("Miles" is the only option I've seen)
protected $u;
* tl
* Technology liked
protected $tl;
* td
* Technology disliked
protected $td;
* s
* Minimum salary
protected $s;
* c
* Currency (eg: USD)
protected $c;
* e
* Offers equity (eg: "true")
* @var boolean
protected $e;
* r
* Offers remote (eg: "true")
protected $r;
* v
* Offers Visa sponsorship (eg: "true")
protected $v;
* t
* Offers Relocation (eg: "true")
protected $t;
* ms
* Minimum experience
protected $ms;
* mxs
* Max experience
protected $mxs;
* j
* Job type:
* "permanent"
* "contract"
protected $j;
* cl
* Companies to include
protected $cl;
* cd
* Companies to exclude
protected $cd;
* i
* Industry
protected $i;
* Get baseUrl
* @return string Value of the base url to this api
public function getBaseUrl()
return 'https://stackoverflow.com/jobs/feed';
}
* Get keyword
* @return string Attribute being used as the search keyword
public function getKeyword()
return $this->q;