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', 'name', 'degree', 'year_awarded', 'major', 'phone', 'minor', 'start_date', 'end_date', 'current', 'school_url', 'address', 'candidate_id', |
||
24 | ]); |
||
25 | |||
26 | $this->setLoadPath('candidates/:candidate_id/schools/:id'); |
||
27 | $this->setCreatePath('candidates/:candidate_id/schools'); |
||
28 | $this->setListPath('candidates/:candidate_id/schools'); |
||
29 | $this->setDeletePath('candidates/:candidate_id/employers/:id'); |
||
30 | |||
31 | parent::__construct($values, $client); |
||
32 | } |
||
34 |