Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function toArray(): array |
||
42 | { |
||
43 | return array_merge( |
||
44 | $this->authentication->toArray(), |
||
45 | [ |
||
46 | 'id' => $this->id, |
||
47 | 'company' => $this->company, |
||
48 | 'street' => $this->street, |
||
49 | 'city' => $this->city, |
||
50 | 'country' => $this->countryCode, |
||
51 | 'pcode' => $this->postCode, |
||
52 | 'fetchGsPUDOpoint' => (int)$this->fetchGsPUDOpoint, |
||
53 | 'retrieveOpeningHours' => (int)$this->retrieveOpeningHours |
||
54 | ] |
||
57 | } |