@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
| 86 | - * @return StringLiteral |
|
| 86 | + * @return string |
|
| 87 | 87 | */ |
| 88 | 88 | public function getDescription() |
| 89 | 89 | { |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
| 94 | - * @return StringLiteral |
|
| 94 | + * @return string |
|
| 95 | 95 | */ |
| 96 | 96 | public function getCopyrightHolder() |
| 97 | 97 | { |
@@ -62,9 +62,9 @@ |
||
| 62 | 62 | public function serialize() |
| 63 | 63 | { |
| 64 | 64 | return [ |
| 65 | - 'cdbid' => $this->cdbid, |
|
| 66 | - 'name' => $this->name->toNative(), |
|
| 67 | - 'address' => $this->address->serialize(), |
|
| 65 | + 'cdbid' => $this->cdbid, |
|
| 66 | + 'name' => $this->name->toNative(), |
|
| 67 | + 'address' => $this->address->serialize(), |
|
| 68 | 68 | ]; |
| 69 | 69 | } |
| 70 | 70 | |
@@ -132,14 +132,14 @@ |
||
| 132 | 132 | public function serialize() |
| 133 | 133 | { |
| 134 | 134 | return [ |
| 135 | - 'phone' => $this->phone, |
|
| 136 | - 'email' => $this->email, |
|
| 137 | - 'url' => $this->url, |
|
| 138 | - 'urlLabel' => $this->urlLabel, |
|
| 139 | - 'name' => $this->name, |
|
| 140 | - 'description' => $this->description, |
|
| 141 | - 'availabilityStarts' => $this->availabilityStarts, |
|
| 142 | - 'availabilityEnds' => $this->availabilityEnds, |
|
| 135 | + 'phone' => $this->phone, |
|
| 136 | + 'email' => $this->email, |
|
| 137 | + 'url' => $this->url, |
|
| 138 | + 'urlLabel' => $this->urlLabel, |
|
| 139 | + 'name' => $this->name, |
|
| 140 | + 'description' => $this->description, |
|
| 141 | + 'availabilityStarts' => $this->availabilityStarts, |
|
| 142 | + 'availabilityEnds' => $this->availabilityEnds, |
|
| 143 | 143 | ]; |
| 144 | 144 | } |
| 145 | 145 | |