Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct($values = null, Client $client = null) |
||
21 | { |
||
22 | $this->setFields( |
||
23 | ['id', 'object', 'uri', 'candidate_id', 'name', 'position', 'salary', 'contract_type', 'do_not_contact', 'start_date', 'end_date', 'employer_url', 'address', 'manager'] |
||
24 | ); |
||
25 | |||
26 | $this->setSavePath('candidates/:candidate_id/employers'); |
||
27 | $this->setLoadPath('candidates/:candidate_id/employers/:id'); |
||
28 | $this->setListPath('candidates/:candidate_id/employers'); |
||
29 | $this->setDeletePath('candidates/:candidate_id/employers/:id'); |
||
30 | |||
31 | parent::__construct($values, $client); |
||
32 | } |
||
34 |