@@ -45,7 +45,6 @@ discard block |
||
45 | 45 | use CultuurNet\UDB3\Event\ReadModel\DocumentRepositoryInterface; |
46 | 46 | use CultuurNet\UDB3\Event\EventServiceInterface; |
47 | 47 | use CultuurNet\UDB3\Iri\IriGeneratorInterface; |
48 | -use CultuurNet\UDB3\LabelCollection; |
|
49 | 48 | use CultuurNet\UDB3\Offer\AvailableTo; |
50 | 49 | use CultuurNet\UDB3\Offer\IriOfferIdentifierFactoryInterface; |
51 | 50 | use CultuurNet\UDB3\Offer\ReadModel\JSONLD\OfferLDProjector; |
@@ -56,7 +55,6 @@ discard block |
||
56 | 55 | use CultuurNet\UDB3\Place\Events\PlaceProjectedToJSONLD; |
57 | 56 | use CultuurNet\UDB3\PlaceService; |
58 | 57 | use CultuurNet\UDB3\ReadModel\JsonDocument; |
59 | -use CultuurNet\UDB3\StringFilter\StringFilterInterface; |
|
60 | 58 | use CultuurNet\UDB3\Theme; |
61 | 59 | use Symfony\Component\Serializer\SerializerInterface; |
62 | 60 | use ValueObjects\String\String; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $domainMessage->getRecordedOn() |
71 | 71 | ), |
72 | 72 | new String( |
73 | - 'Aangemaakt via EntryAPI door consumer "' . $consumerName . '"' |
|
73 | + 'Aangemaakt via EntryAPI door consumer "'.$consumerName.'"' |
|
74 | 74 | ), |
75 | 75 | $this->getAuthorFromMetadata($domainMessage->getMetadata()) |
76 | 76 | ) |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $domainMessage->getRecordedOn() |
91 | 91 | ), |
92 | 92 | new String( |
93 | - 'Geüpdatet via EntryAPI door consumer "' . $consumerName . '"' |
|
93 | + 'Geüpdatet via EntryAPI door consumer "'.$consumerName.'"' |
|
94 | 94 | ), |
95 | 95 | $this->getAuthorFromMetadata($domainMessage->getMetadata()) |
96 | 96 | ) |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $consumerName = $this->getConsumerFromMetadata($domainMessage->getMetadata()); |
160 | 160 | |
161 | 161 | if ($consumerName) { |
162 | - $message .= ' via EntryAPI door consumer "' . $consumerName . '"'; |
|
162 | + $message .= ' via EntryAPI door consumer "'.$consumerName.'"'; |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | $this->writeHistory( |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
67 | 67 | 'CultuurNet\UDB3\UsedKeywordsMemory\Created', |
68 | - function (array $serializedObject) { |
|
68 | + function(array $serializedObject) { |
|
69 | 69 | $serializedObject['class'] = UsedLabelsMemoryCreated::class; |
70 | 70 | |
71 | 71 | return $serializedObject; |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | |
75 | 75 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
76 | 76 | 'CultuurNet\UDB3\UsedKeywordsMemory\KeywordUsed', |
77 | - function (array $serializedObject) { |
|
77 | + function(array $serializedObject) { |
|
78 | 78 | $serializedObject['class'] = LabelUsed::class; |
79 | 79 | |
80 | 80 | $serializedObject = self::replaceKeywordWithLabel($serializedObject); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | |
90 | 90 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
91 | 91 | 'CultuurNet\UDB3\Event\TitleTranslated', |
92 | - function (array $serializedObject) { |
|
92 | + function(array $serializedObject) { |
|
93 | 93 | $serializedObject['class'] = TitleTranslated::class; |
94 | 94 | |
95 | 95 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
102 | 102 | 'CultuurNet\UDB3\Event\DescriptionTranslated', |
103 | - function (array $serializedObject) { |
|
103 | + function(array $serializedObject) { |
|
104 | 104 | $serializedObject['class'] = DescriptionTranslated::class; |
105 | 105 | |
106 | 106 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -115,49 +115,49 @@ discard block |
||
115 | 115 | |
116 | 116 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
117 | 117 | 'CultuurNet\UDB3\Label\Events\MadeInvisible', |
118 | - function (array $serializedObject) use ($labelRepository) { |
|
118 | + function(array $serializedObject) use ($labelRepository) { |
|
119 | 119 | return self::addLabelName($serializedObject, $labelRepository); |
120 | 120 | } |
121 | 121 | ); |
122 | 122 | |
123 | 123 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
124 | 124 | 'CultuurNet\UDB3\Label\Events\MadeVisible', |
125 | - function (array $serializedObject) use ($labelRepository) { |
|
125 | + function(array $serializedObject) use ($labelRepository) { |
|
126 | 126 | return self::addLabelName($serializedObject, $labelRepository); |
127 | 127 | } |
128 | 128 | ); |
129 | 129 | |
130 | 130 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
131 | 131 | 'CultuurNet\UDB3\Label\Events\MadePrivate', |
132 | - function (array $serializedObject) use ($labelRepository) { |
|
132 | + function(array $serializedObject) use ($labelRepository) { |
|
133 | 133 | return self::addLabelName($serializedObject, $labelRepository); |
134 | 134 | } |
135 | 135 | ); |
136 | 136 | |
137 | 137 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
138 | 138 | 'CultuurNet\UDB3\Label\Events\MadePublic', |
139 | - function (array $serializedObject) use ($labelRepository) { |
|
139 | + function(array $serializedObject) use ($labelRepository) { |
|
140 | 140 | return self::addLabelName($serializedObject, $labelRepository); |
141 | 141 | } |
142 | 142 | ); |
143 | 143 | |
144 | 144 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
145 | 145 | 'CultuurNet\UDB3\Organizer\Events\LabelAdded', |
146 | - function (array $serializedObject) use ($labelRepository) { |
|
146 | + function(array $serializedObject) use ($labelRepository) { |
|
147 | 147 | return self::fixOrganizerLabelEvent($serializedObject, $labelRepository); |
148 | 148 | } |
149 | 149 | ); |
150 | 150 | |
151 | 151 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
152 | 152 | 'CultuurNet\UDB3\Organizer\Events\LabelRemoved', |
153 | - function (array $serializedObject) use ($labelRepository) { |
|
153 | + function(array $serializedObject) use ($labelRepository) { |
|
154 | 154 | return self::fixOrganizerLabelEvent($serializedObject, $labelRepository); |
155 | 155 | } |
156 | 156 | ); |
157 | 157 | |
158 | 158 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
159 | 159 | 'CultuurNet\UDB3\Event\Events\EventWasLabelled', |
160 | - function (array $serializedObject) { |
|
160 | + function(array $serializedObject) { |
|
161 | 161 | $serializedObject['class'] = LabelAdded::class; |
162 | 162 | |
163 | 163 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
170 | 170 | 'CultuurNet\UDB3\Event\EventWasTagged', |
171 | - function (array $serializedObject) { |
|
171 | + function(array $serializedObject) { |
|
172 | 172 | $serializedObject['class'] = LabelAdded::class; |
173 | 173 | |
174 | 174 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | |
182 | 182 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
183 | 183 | 'CultuurNet\UDB3\Event\TagErased', |
184 | - function (array $serializedObject) { |
|
184 | + function(array $serializedObject) { |
|
185 | 185 | $serializedObject['class'] = LabelRemoved::class; |
186 | 186 | |
187 | 187 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
196 | 196 | 'CultuurNet\UDB3\Event\Events\Unlabelled', |
197 | - function (array $serializedObject) { |
|
197 | + function(array $serializedObject) { |
|
198 | 198 | $serializedObject['class'] = LabelRemoved::class; |
199 | 199 | |
200 | 200 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | |
210 | 210 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
211 | 211 | 'CultuurNet\UDB3\Event\EventImportedFromUDB2', |
212 | - function (array $serializedObject) { |
|
212 | + function(array $serializedObject) { |
|
213 | 213 | $serializedObject['class'] = EventImportedFromUDB2::class; |
214 | 214 | |
215 | 215 | return $serializedObject; |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | foreach ($refactoredEventEvents as $refactoredEventEvent) { |
235 | 235 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
236 | 236 | $refactoredEventEvent, |
237 | - function (array $serializedObject) { |
|
237 | + function(array $serializedObject) { |
|
238 | 238 | $serializedObject = self::replaceEventIdWithItemId($serializedObject); |
239 | 239 | return $serializedObject; |
240 | 240 | } |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | foreach ($refactoredPlaceEvents as $refactoredPlaceEvent) { |
259 | 259 | $payloadManipulatingSerializer->manipulateEventsOfClass( |
260 | 260 | $refactoredPlaceEvent, |
261 | - function (array $serializedObject) { |
|
261 | + function(array $serializedObject) { |
|
262 | 262 | $serializedObject = self::replacePlaceIdWithItemId($serializedObject); |
263 | 263 | return $serializedObject; |
264 | 264 | } |