@@ -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 | |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | private function getErrorMessages($validationErrors) |
| 97 | 97 | { |
| 98 | 98 | $errorMessages = array_map( |
| 99 | - function ($error) { |
|
| 99 | + function($error) { |
|
| 100 | 100 | return $error['message']; |
| 101 | 101 | }, |
| 102 | 102 | $validationErrors |
@@ -252,7 +252,7 @@ |
||
| 252 | 252 | |
| 253 | 253 | $results = $q->execute(); |
| 254 | 254 | $offerIdentifierArray = array_map( |
| 255 | - function ($resultRow) { |
|
| 255 | + function($resultRow) { |
|
| 256 | 256 | $offerIdentifier = new IriOfferIdentifier( |
| 257 | 257 | $resultRow['entity_id'], |
| 258 | 258 | OfferType::fromNative(ucfirst($resultRow['entity_type'])) |
@@ -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, |
@@ -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)); |
@@ -20,14 +20,14 @@ discard block |
||
| 20 | 20 | $this->regex = $regex; |
| 21 | 21 | |
| 22 | 22 | $match = @preg_match( |
| 23 | - '@^' . $regex . '$@', |
|
| 23 | + '@^'.$regex.'$@', |
|
| 24 | 24 | '', |
| 25 | 25 | $matches |
| 26 | 26 | ); |
| 27 | 27 | |
| 28 | 28 | if (false === $match) { |
| 29 | 29 | throw new \InvalidArgumentException( |
| 30 | - 'Problem evaluating regular expression pattern ' . $regex |
|
| 30 | + 'Problem evaluating regular expression pattern '.$regex |
|
| 31 | 31 | ); |
| 32 | 32 | } |
| 33 | 33 | } |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | public function fromIri($iri) |
| 40 | 40 | { |
| 41 | 41 | $match = @preg_match( |
| 42 | - '@^' . $this->regex . '$@', |
|
| 42 | + '@^'.$this->regex.'$@', |
|
| 43 | 43 | (string)$iri, |
| 44 | 44 | $matches |
| 45 | 45 | ); |
@@ -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 | } |