| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function extract($object) |
||
| 29 | { |
||
| 30 | $data = array(); |
||
| 31 | |||
| 32 | /** @var Entity\Job $object */ |
||
| 33 | if ($object->getOrganization()) { |
||
| 34 | $data['description-label-requirements'] = $object->getOrganization()->getTemplate()->getLabelRequirements(); |
||
| 35 | $data['description-label-qualifications'] = $object->getOrganization()->getTemplate()->getLabelQualifications(); |
||
| 36 | $data['description-label-benefits'] = $object->getOrganization()->getTemplate()->getLabelBenefits(); |
||
| 37 | } |
||
| 38 | return $data; |
||
| 39 | } |
||
| 40 | |||
| 58 |