@@ -127,12 +127,12 @@ |
||
127 | 127 | public function serialize() |
128 | 128 | { |
129 | 129 | return [ |
130 | - 'media_object_id' => (string) $this->getMediaObjectId(), |
|
131 | - 'mime_type' => (string) $this->getMimeType(), |
|
132 | - 'description' => (string) $this->getDescription(), |
|
133 | - 'copyright_holder' => (string) $this->getCopyrightHolder(), |
|
134 | - 'source_location' => (string) $this->getSourceLocation(), |
|
135 | - 'language' => (string) $this->getLanguage(), |
|
130 | + 'media_object_id' => (string)$this->getMediaObjectId(), |
|
131 | + 'mime_type' => (string)$this->getMimeType(), |
|
132 | + 'description' => (string)$this->getDescription(), |
|
133 | + 'copyright_holder' => (string)$this->getCopyrightHolder(), |
|
134 | + 'source_location' => (string)$this->getSourceLocation(), |
|
135 | + 'language' => (string)$this->getLanguage(), |
|
136 | 136 | ]; |
137 | 137 | } |
138 | 138 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function serialize() |
39 | 39 | { |
40 | 40 | return parent::serialize() + [ |
41 | - 'website' => (string) $this->getWebsite(), |
|
41 | + 'website' => (string)$this->getWebsite(), |
|
42 | 42 | ]; |
43 | 43 | } |
44 | 44 |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public function serialize() |
37 | 37 | { |
38 | 38 | return parent::serialize() + array( |
39 | - 'title' => (string) $this->title, |
|
39 | + 'title' => (string)$this->title, |
|
40 | 40 | ); |
41 | 41 | } |
42 | 42 |
@@ -22,8 +22,8 @@ |
||
22 | 22 | */ |
23 | 23 | public function __construct(StringLiteral $userId, $command) |
24 | 24 | { |
25 | - parent::__construct('User with id: ' . $userId->toNative() . |
|
26 | - ' failed to execute command: ' . get_class($command) . |
|
25 | + parent::__construct('User with id: '.$userId->toNative(). |
|
26 | + ' failed to execute command: '.get_class($command). |
|
27 | 27 | ' because it is not authorizable.'); |
28 | 28 | |
29 | 29 | $this->userId = $userId; |
@@ -117,7 +117,7 @@ |
||
117 | 117 | */ |
118 | 118 | public function getItemId() |
119 | 119 | { |
120 | - return (string) $this->getFileId(); |
|
120 | + return (string)$this->getFileId(); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @param array $data |
35 | - * @return mixed The object instance |
|
35 | + * @return AbstractFacilitiesUpdated The object instance |
|
36 | 36 | */ |
37 | 37 | public static function deserialize(array $data) |
38 | 38 | { |
@@ -9,8 +9,8 @@ |
||
9 | 9 | */ |
10 | 10 | public function format(Address $address) |
11 | 11 | { |
12 | - return $address->getPostalCode() . ' ' . |
|
13 | - $address->getLocality() . ', ' . |
|
12 | + return $address->getPostalCode().' '. |
|
13 | + $address->getLocality().', '. |
|
14 | 14 | $address->getCountry()->getCode(); |
15 | 15 | } |
16 | 16 | } |
@@ -154,7 +154,7 @@ |
||
154 | 154 | } |
155 | 155 | return parent::serialize() + array( |
156 | 156 | 'main_language' => $this->mainLanguage->getCode(), |
157 | - 'title' => (string) $this->getTitle(), |
|
157 | + 'title' => (string)$this->getTitle(), |
|
158 | 158 | 'event_type' => $this->getEventType()->serialize(), |
159 | 159 | 'theme' => $theme, |
160 | 160 | 'address' => $this->getAddress()->serialize(), |
@@ -73,8 +73,8 @@ |
||
73 | 73 | { |
74 | 74 | return parent::serialize() + array( |
75 | 75 | 'main_language' => $this->getMainLanguage()->getCode(), |
76 | - 'website' => (string) $this->getWebsite(), |
|
77 | - 'title' => (string) $this->getTitle(), |
|
76 | + 'website' => (string)$this->getWebsite(), |
|
77 | + 'title' => (string)$this->getTitle(), |
|
78 | 78 | ); |
79 | 79 | } |
80 | 80 |