for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace JobApis\Jobs\Client\Queries;
class JobinventoryQuery extends AbstractQuery
{
/**
* q
*
* The search query.
* @var string
*/
protected $q;
* l
* The search location.
protected $l;
* limit
* Number of results per page
* @var integer
protected $limit;
* p
* Page
protected $p;
* radius
* Miles away to search
protected $radius;
* t
* Job title.
protected $t;
* company
protected $company;
* date
* Number of days back to search.
protected $date;
* jobtype
* Valid options include:
* Full-time
* Contract
* Part-time
* Temporary
* Seasonal
protected $jobtype;
* education
* Professional
* High School
* Doctorate
* Associate's Degree
* Some College
* Bachelor's Degree
protected $education;
* c
* Category (see website for options).
protected $c;
* o
* Job source (see website for options).
protected $o;
* experience
* Experience required (see website for options).
protected $experience;
* Get baseUrl
* @return string Value of the base url to this api
public function getBaseUrl()
return 'http://www.jobinventory.com/rss';
}
* Get keyword
* @return string Attribute being used as the search keyword
public function getKeyword()
return $this->q;
* Required parameters
* @return array
protected function requiredAttributes()
return [
'q',
];