| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function jsonSerialize() |
||
| 31 | { |
||
| 32 | return [ |
||
| 33 | 'firstname' => $this->firstname, |
||
| 34 | 'lastname' => $this->lastname, |
||
| 35 | 'postal_code' => $this->postalCode, |
||
| 36 | 'department' => $this->department, |
||
| 37 | 'productions' => $this->characteristicsByType[GetFarmingType::type] ?? [], |
||
| 38 | 'characteristics' => $this->characteristicsByType[GetFarmingType::typeSystem] ?? [], |
||
| 39 | ]; |
||
| 42 |