@@ -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 | |
@@ -148,7 +148,7 @@ |
||
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | - * @param $id |
|
| 151 | + * @param string $id |
|
| 152 | 152 | * @param EntityType $entityType |
| 153 | 153 | * @return bool |
| 154 | 154 | */ |
@@ -330,7 +330,7 @@ |
||
| 330 | 330 | |
| 331 | 331 | $results = $queryBuilder->execute(); |
| 332 | 332 | $offerIdentifierArray = array_map( |
| 333 | - function ($resultRow) { |
|
| 333 | + function($resultRow) { |
|
| 334 | 334 | $offerIdentifier = new IriOfferIdentifier( |
| 335 | 335 | Url::fromNative($resultRow['entity_iri']), |
| 336 | 336 | $resultRow['entity_id'], |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | ); |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - return isset($userId) ? (string) $userId : ''; |
|
| 139 | + return isset($userId) ? (string)$userId : ''; |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | $this->updateIndex( |
| 225 | 225 | $itemId, |
| 226 | 226 | $itemType, |
| 227 | - (string) $userId, |
|
| 227 | + (string)$userId, |
|
| 228 | 228 | $name, |
| 229 | 229 | $postalCode, |
| 230 | 230 | $this->UDB2Domain, |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | /** |
| 362 | - * @param $dateString |
|
| 362 | + * @param string $dateString |
|
| 363 | 363 | * A UDB2 formatted date string |
| 364 | 364 | * |
| 365 | 365 | * @return DateTimeInterface |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | * Update the index |
| 378 | 378 | * @param $id |
| 379 | 379 | * @param EntityType $type |
| 380 | - * @param $userId |
|
| 380 | + * @param string|null $userId |
|
| 381 | 381 | * @param $name |
| 382 | 382 | * @param $postalCode |
| 383 | 383 | * @param Domain $owningDomain |
@@ -23,8 +23,8 @@ |
||
| 23 | 23 | { |
| 24 | 24 | $baseUrl = $this->baseUrl; |
| 25 | 25 | return new CallableIriGenerator( |
| 26 | - function ($cdbid) use ($baseUrl, $entityType) { |
|
| 27 | - return $baseUrl . '/' . $entityType . '/' . $cdbid; |
|
| 26 | + function($cdbid) use ($baseUrl, $entityType) { |
|
| 27 | + return $baseUrl.'/'.$entityType.'/'.$cdbid; |
|
| 28 | 28 | } |
| 29 | 29 | ); |
| 30 | 30 | } |
@@ -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)); |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
| 175 | - * @param $dateString |
|
| 175 | + * @param string $dateString |
|
| 176 | 176 | * @return \DateTime |
| 177 | 177 | */ |
| 178 | 178 | protected function dateFromUdb2DateString($dateString) |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | |
| 187 | 187 | /** |
| 188 | 188 | * @param Metadata $metadata |
| 189 | - * @return String|null |
|
| 189 | + * @return StringLiteral|null |
|
| 190 | 190 | */ |
| 191 | 191 | protected function getAuthorFromMetadata(Metadata $metadata) |
| 192 | 192 | { |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | |
| 200 | 200 | /** |
| 201 | 201 | * @param Metadata $metadata |
| 202 | - * @return String|null |
|
| 202 | + * @return StringLiteral|null |
|
| 203 | 203 | */ |
| 204 | 204 | protected function getConsumerFromMetadata(Metadata $metadata) |
| 205 | 205 | { |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | |
| 228 | 228 | /** |
| 229 | 229 | * @param string $eventId |
| 230 | - * @param Log[]|Log $logs |
|
| 230 | + * @param Log $logs |
|
| 231 | 231 | */ |
| 232 | 232 | protected function writeHistory($eventId, $logs) |
| 233 | 233 | { |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | { |
| 20 | 20 | if (!is_string($itemId)) { |
| 21 | 21 | throw new \InvalidArgumentException( |
| 22 | - 'Expected itemId to be a string, received ' . gettype($itemId) |
|
| 22 | + 'Expected itemId to be a string, received '.gettype($itemId) |
|
| 23 | 23 | ); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -38,6 +38,6 @@ |
||
| 38 | 38 | { |
| 39 | 39 | $classParts = explode('\\', get_class($event)); |
| 40 | 40 | |
| 41 | - return 'apply' . end($classParts); |
|
| 41 | + return 'apply'.end($classParts); |
|
| 42 | 42 | } |
| 43 | 43 | } |