Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
20 | public function __construct($values = null, Client $client = null) |
||
21 | { |
||
22 | $this->setSavePath('candidates/:candidate_id/employers'); |
||
23 | $this->setLoadPath('candidates/:candidate_id/employers/:id'); |
||
24 | $this->setListPath('candidates/:candidate_id/employers'); |
||
25 | $this->setDeletePath('candidates/:candidate_id/employers/:id'); |
||
26 | |||
27 | parent::__construct($values, $client); |
||
28 | } |
||
30 |