| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function toArray($request): array |
||
| 12 | { |
||
| 13 | return [ |
||
| 14 | 'id' => $this->id, |
||
|
|
|||
| 15 | 'name' => $this->name, |
||
| 16 | 'tax_id' => $this->tax_id, |
||
| 17 | 'country' => $this->country, |
||
| 18 | 'address' => $this->address, |
||
| 19 | 'email' => $this->email, |
||
| 20 | 'phone' => $this->phone, |
||
| 21 | 'type' => $this->type, |
||
| 22 | ]; |
||
| 24 | } |