@@ -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(), |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function __construct($iri) |
18 | 18 | { |
19 | - $this->iri = (string) $iri; |
|
19 | + $this->iri = (string)$iri; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $variationLD = $variation->getBody(); |
72 | 72 | $language = 'nl'; |
73 | 73 | |
74 | - $variationLD->description->$language = (string) $descriptionEdited->getDescription(); |
|
74 | + $variationLD->description->$language = (string)$descriptionEdited->getDescription(); |
|
75 | 75 | $this->repository->save($variation->withBody($variationLD)); |
76 | 76 | } |
77 | 77 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | // overwrite the description that's already set in the variation |
147 | 147 | if (!$variationLD->description) { |
148 | - $variationLD->description = (object) []; |
|
148 | + $variationLD->description = (object)[]; |
|
149 | 149 | } |
150 | 150 | $variationLD->description->nl = (string)$eventVariationCreated->getDescription(); |
151 | 151 |
@@ -4,11 +4,9 @@ |
||
4 | 4 | |
5 | 5 | use Exception; |
6 | 6 | use GuzzleHttp\Psr7\Request; |
7 | -use GuzzleHttp\Psr7\Response; |
|
8 | 7 | use GuzzleHttp\Psr7\Uri; |
9 | 8 | use Http\Client\Exception as HttpException; |
10 | 9 | use Http\Client\HttpClient; |
11 | -use Psr\Http\Message\UriInterface; |
|
12 | 10 | |
13 | 11 | class ExternalEventService implements EventServiceInterface |
14 | 12 | { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | throw new EventNotFoundException(); |
42 | 42 | } |
43 | 43 | |
44 | - return (string) $response->getBody(); |
|
44 | + return (string)$response->getBody(); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function eventsOrganizedByOrganizer($organizerId) |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * @param string $id |
37 | 37 | * A string uniquely identifying an event. |
38 | 38 | * |
39 | - * @return array |
|
39 | + * @return string |
|
40 | 40 | * An event array. |
41 | 41 | * |
42 | 42 | * @throws EventNotFoundException if an event can not be found for the given id |