@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public static function calendar(Calendar $calendar) |
| 25 | 25 | { |
| 26 | - $offerCalenderUpdate = function ($body) use ($calendar) { |
|
| 26 | + $offerCalenderUpdate = function($body) use ($calendar) { |
|
| 27 | 27 | // Purge any existing calendar data |
| 28 | 28 | unset( |
| 29 | 29 | $body->calendarType, |
@@ -33,8 +33,8 @@ discard block |
||
| 33 | 33 | $body->openingHours |
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - return (object) array_merge( |
|
| 37 | - (array) $body, |
|
| 36 | + return (object)array_merge( |
|
| 37 | + (array)$body, |
|
| 38 | 38 | $calendar->toJsonLd() |
| 39 | 39 | ); |
| 40 | 40 | }; |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * @param array $data |
| 51 | - * @return mixed The object instance |
|
| 51 | + * @return AbstractImageEvent The object instance |
|
| 52 | 52 | */ |
| 53 | 53 | public static function deserialize(array $data) |
| 54 | 54 | { |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | - * @param mixed $json |
|
| 73 | + * @param stdClass $json |
|
| 74 | 74 | * |
| 75 | 75 | * @throws ValidationException |
| 76 | 76 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | private function getErrorMessages($validationErrors) |
| 121 | 121 | { |
| 122 | 122 | $errorMessages = array_map( |
| 123 | - function ($error) { |
|
| 123 | + function($error) { |
|
| 124 | 124 | return $error['message']; |
| 125 | 125 | }, |
| 126 | 126 | $validationErrors |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | - * @param mixed $json |
|
| 73 | + * @param stdClass $json |
|
| 74 | 74 | * |
| 75 | 75 | * @throws ValidationException |
| 76 | 76 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | private function getErrorMessages($validationErrors) |
| 121 | 121 | { |
| 122 | 122 | $errorMessages = array_map( |
| 123 | - function ($error) { |
|
| 123 | + function($error) { |
|
| 124 | 124 | return $error['message']; |
| 125 | 125 | }, |
| 126 | 126 | $validationErrors |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | private function guardNotDeleted() |
| 123 | 123 | { |
| 124 | 124 | if ($this->isDeleted()) { |
| 125 | - throw new AggregateDeletedException((string) $this->id); |
|
| 125 | + throw new AggregateDeletedException((string)$this->id); |
|
| 126 | 126 | } |
| 127 | 127 | } |
| 128 | 128 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | public function getAggregateRootId() |
| 150 | 150 | { |
| 151 | - return (string) $this->id; |
|
| 151 | + return (string)$this->id; |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | public function serialize() |
| 38 | 38 | { |
| 39 | 39 | return array( |
| 40 | - 'id' => (string) $this->getId(), |
|
| 40 | + 'id' => (string)$this->getId(), |
|
| 41 | 41 | ); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -94,10 +94,10 @@ |
||
| 94 | 94 | public function serialize() |
| 95 | 95 | { |
| 96 | 96 | return parent::serialize() + array( |
| 97 | - 'origin_url' => (string) $this->getOriginUrl(), |
|
| 98 | - 'owner_id' => (string) $this->getOwnerId(), |
|
| 99 | - 'purpose' => (string) $this->getPurpose(), |
|
| 100 | - 'description' => (string) $this->getDescription(), |
|
| 97 | + 'origin_url' => (string)$this->getOriginUrl(), |
|
| 98 | + 'owner_id' => (string)$this->getOwnerId(), |
|
| 99 | + 'purpose' => (string)$this->getPurpose(), |
|
| 100 | + 'description' => (string)$this->getDescription(), |
|
| 101 | 101 | ); |
| 102 | 102 | } |
| 103 | 103 | |
@@ -49,11 +49,11 @@ |
||
| 49 | 49 | $this->connection->insert( |
| 50 | 50 | $this->connection->quoteIdentifier($this->tableName), |
| 51 | 51 | [ |
| 52 | - 'id' => (string) $variationId, |
|
| 53 | - 'owner' => (string) $ownerId, |
|
| 54 | - 'purpose' => (string) $purpose, |
|
| 52 | + 'id' => (string)$variationId, |
|
| 53 | + 'owner' => (string)$ownerId, |
|
| 54 | + 'purpose' => (string)$purpose, |
|
| 55 | 55 | 'inserted' => time(), |
| 56 | - 'origin_url' => (string) $eventUrl, |
|
| 56 | + 'origin_url' => (string)$eventUrl, |
|
| 57 | 57 | ] |
| 58 | 58 | ); |
| 59 | 59 | |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | |
| 63 | 63 | if (preg_match('/^apply(.+)$/', $method, $matches)) { |
| 64 | 64 | $event = $matches[1]; |
| 65 | - $classNameMethod = 'get' . $event . 'ClassName'; |
|
| 65 | + $classNameMethod = 'get'.$event.'ClassName'; |
|
| 66 | 66 | |
| 67 | 67 | if (method_exists($this, $classNameMethod)) { |
| 68 | 68 | $eventFullClassName = call_user_func(array($this, $classNameMethod)); |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
| 184 | - * @param $dateString |
|
| 184 | + * @param string $dateString |
|
| 185 | 185 | * @return \DateTime |
| 186 | 186 | */ |
| 187 | 187 | protected function dateFromUdb2DateString($dateString) |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | |
| 196 | 196 | /** |
| 197 | 197 | * @param Metadata $metadata |
| 198 | - * @return String|null |
|
| 198 | + * @return StringLiteral|null |
|
| 199 | 199 | */ |
| 200 | 200 | protected function getAuthorFromMetadata(Metadata $metadata) |
| 201 | 201 | { |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | |
| 209 | 209 | /** |
| 210 | 210 | * @param Metadata $metadata |
| 211 | - * @return String|null |
|
| 211 | + * @return StringLiteral|null |
|
| 212 | 212 | */ |
| 213 | 213 | protected function getConsumerFromMetadata(Metadata $metadata) |
| 214 | 214 | { |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | 238 | * @param string $eventId |
| 239 | - * @param Log[]|Log $logs |
|
| 239 | + * @param Log $logs |
|
| 240 | 240 | */ |
| 241 | 241 | protected function writeHistory($eventId, $logs) |
| 242 | 242 | { |
@@ -258,6 +258,9 @@ discard block |
||
| 258 | 258 | ); |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | + /** |
|
| 262 | + * @return null|string |
|
| 263 | + */ |
|
| 261 | 264 | protected function getApiKeyFromMetadata(Metadata $metadata): ?string |
| 262 | 265 | { |
| 263 | 266 | $properties = $metadata->serialize(); |
@@ -269,6 +272,9 @@ discard block |
||
| 269 | 272 | return null; |
| 270 | 273 | } |
| 271 | 274 | |
| 275 | + /** |
|
| 276 | + * @return null|string |
|
| 277 | + */ |
|
| 272 | 278 | protected function getApiFromMetadata(Metadata $metadata): ?string |
| 273 | 279 | { |
| 274 | 280 | $properties = $metadata->serialize(); |