@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $this->mailMap[$key] = $this->wrapped->byEmail($email); |
52 | 52 | } else { |
53 | 53 | $this->logger->info( |
54 | - 'found user id mapping of ' . $email->toNative() . ' in cache' |
|
54 | + 'found user id mapping of '.$email->toNative().' in cache' |
|
55 | 55 | ); |
56 | 56 | } |
57 | 57 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $this->nickMap[$key] = $this->wrapped->byNick($nick); |
69 | 69 | } else { |
70 | 70 | $this->logger->info( |
71 | - 'found user id mapping of ' . $nick->toNative() . ' in cache' |
|
71 | + 'found user id mapping of '.$nick->toNative().' in cache' |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | if (!$userId) { |
46 | 46 | $this->logger->warning( |
47 | - 'Unable to find user with identifier ' . $createdByIdentifier |
|
47 | + 'Unable to find user with identifier '.$createdByIdentifier |
|
48 | 48 | ); |
49 | 49 | } |
50 | 50 | } catch (Exception $e) { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | ) { |
99 | 99 | if (!is_string($eventId)) { |
100 | 100 | throw new \InvalidArgumentException( |
101 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
101 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
102 | 102 | ); |
103 | 103 | } |
104 | 104 |
@@ -98,7 +98,7 @@ |
||
98 | 98 | public function applyOrganizerImportedFromUDB2( |
99 | 99 | OrganizerImportedFromUDB2 $organizerImported |
100 | 100 | ) { |
101 | - $this->actorId = (string) $organizerImported->getActorId(); |
|
101 | + $this->actorId = (string)$organizerImported->getActorId(); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
62 | 62 | 'CultuurNet\UDB3\UsedKeywordsMemory\Created', |
63 | - function (array $serializedObject) { |
|
63 | + function(array $serializedObject) { |
|
64 | 64 | $serializedObject['class'] = UsedLabelsMemoryCreated::class; |
65 | 65 | |
66 | 66 | return $serializedObject; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
71 | 71 | 'CultuurNet\UDB3\UsedKeywordsMemory\KeywordUsed', |
72 | - function (array $serializedObject) { |
|
72 | + function(array $serializedObject) { |
|
73 | 73 | $serializedObject['class'] = LabelUsed::class; |
74 | 74 | |
75 | 75 | $serializedObject = self::replaceKeywordWithLabel($serializedObject); |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
86 | 86 | 'CultuurNet\UDB3\Event\TitleTranslated', |
87 | - function (array $serializedObject) { |
|
87 | + function(array $serializedObject) { |
|
88 | 88 | $serializedObject['class'] = TitleTranslated::class; |
89 | 89 | |
90 | 90 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
97 | 97 | 'CultuurNet\UDB3\Event\DescriptionTranslated', |
98 | - function (array $serializedObject) { |
|
98 | + function(array $serializedObject) { |
|
99 | 99 | $serializedObject['class'] = DescriptionTranslated::class; |
100 | 100 | |
101 | 101 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
112 | 112 | 'CultuurNet\UDB3\Event\Events\EventWasLabelled', |
113 | - function (array $serializedObject) { |
|
113 | + function(array $serializedObject) { |
|
114 | 114 | $serializedObject['class'] = LabelAdded::class; |
115 | 115 | |
116 | 116 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
123 | 123 | 'CultuurNet\UDB3\Event\EventWasTagged', |
124 | - function (array $serializedObject) { |
|
124 | + function(array $serializedObject) { |
|
125 | 125 | $serializedObject['class'] = LabelAdded::class; |
126 | 126 | |
127 | 127 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
136 | 136 | 'CultuurNet\UDB3\Event\TagErased', |
137 | - function (array $serializedObject) { |
|
137 | + function(array $serializedObject) { |
|
138 | 138 | $serializedObject['class'] = LabelDeleted::class; |
139 | 139 | |
140 | 140 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | |
148 | 148 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
149 | 149 | 'CultuurNet\UDB3\Event\Events\Unlabelled', |
150 | - function (array $serializedObject) { |
|
150 | + function(array $serializedObject) { |
|
151 | 151 | $serializedObject['class'] = LabelDeleted::class; |
152 | 152 | |
153 | 153 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
160 | 160 | 'CultuurNet\UDB3\Event\Events\LabelsApplied', |
161 | - function (array $serializedObject) { |
|
161 | + function(array $serializedObject) { |
|
162 | 162 | $serializedObject['class'] = LabelsMerged::class; |
163 | 163 | |
164 | 164 | $keywordsString = $serializedObject['payload']['keywords_string']; |
@@ -180,9 +180,9 @@ discard block |
||
180 | 180 | } |
181 | 181 | |
182 | 182 | $labels = array_map( |
183 | - function (Label $label) { |
|
183 | + function(Label $label) { |
|
184 | 184 | return [ |
185 | - 'text' => (string) $label, |
|
185 | + 'text' => (string)$label, |
|
186 | 186 | 'visible' => $label->isVisible(), |
187 | 187 | ]; |
188 | 188 | }, |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | |
203 | 203 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
204 | 204 | 'CultuurNet\UDB3\Event\EventImportedFromUDB2', |
205 | - function (array $serializedObject) { |
|
205 | + function(array $serializedObject) { |
|
206 | 206 | $serializedObject['class'] = EventImportedFromUDB2::class; |
207 | 207 | |
208 | 208 | return $serializedObject; |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | foreach ($refactoredEventEvents as $refactoredEventEvent) { |
227 | 227 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
228 | 228 | $refactoredEventEvent, |
229 | - function (array $serializedObject) { |
|
229 | + function(array $serializedObject) { |
|
230 | 230 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
231 | 231 | return $serializedObject; |
232 | 232 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | foreach ($refactoredPlaceEvents as $refactoredPlaceEvent) { |
250 | 250 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
251 | 251 | $refactoredPlaceEvent, |
252 | - function (array $serializedObject) { |
|
252 | + function(array $serializedObject) { |
|
253 | 253 | $serializedObject = self::replacePlaceIdWithItemId($serializedObject); |
254 | 254 | return $serializedObject; |
255 | 255 | } |
@@ -48,7 +48,7 @@ |
||
48 | 48 | public function validateUrl(Url $url) |
49 | 49 | { |
50 | 50 | $identifier = $this->iriOfferIdentifierFactory->fromIri( |
51 | - \ValueObjects\Web\Url::fromNative((string) $url) |
|
51 | + \ValueObjects\Web\Url::fromNative((string)$url) |
|
52 | 52 | ); |
53 | 53 | $offerType = $identifier->getType(); |
54 | 54 | $offerId = $identifier->getId(); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function jsonSerialize() |
67 | 67 | { |
68 | 68 | return [ |
69 | - '@id' => (string) $this->iri, |
|
69 | + '@id' => (string)$this->iri, |
|
70 | 70 | '@type' => $this->type->toNative(), |
71 | 71 | ]; |
72 | 72 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | return json_encode( |
80 | 80 | [ |
81 | - 'iri' => (string) $this->iri, |
|
81 | + 'iri' => (string)$this->iri, |
|
82 | 82 | 'id' => $this->id, |
83 | 83 | 'type' => $this->type->toNative(), |
84 | 84 | ] |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | public function addLabel(IriOfferIdentifier $identifier, Label $label) |
40 | 40 | { |
41 | 41 | $uri = $this->createUri( |
42 | - (string) $identifier->getIri(), |
|
42 | + (string)$identifier->getIri(), |
|
43 | 43 | 'labels' |
44 | 44 | ); |
45 | 45 | |
46 | 46 | $data = [ |
47 | - 'label' => (string) $label, |
|
47 | + 'label' => (string)$label, |
|
48 | 48 | ]; |
49 | 49 | |
50 | 50 | $request = $this->createJsonPostRequest($uri, $data); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | private function createUri($iri, $path) |
60 | 60 | { |
61 | 61 | return $this->psr7Factory->createUri( |
62 | - rtrim($iri, '/') . '/' . $path |
|
62 | + rtrim($iri, '/').'/'.$path |
|
63 | 63 | ); |
64 | 64 | } |
65 | 65 |
@@ -91,7 +91,7 @@ |
||
91 | 91 | $this->externalOfferEditingService->addLabel($offerIdentifier, $label); |
92 | 92 | } catch (\Exception $e) { |
93 | 93 | $logContext = [ |
94 | - 'iri' => (string) $offerIdentifier->getIri(), |
|
94 | + 'iri' => (string)$offerIdentifier->getIri(), |
|
95 | 95 | 'command' => $originalCommandName, |
96 | 96 | 'exception' => get_class($e), |
97 | 97 | 'message' => $e->getMessage(), |