Completed
Pull Request — master (#114)
by Kristof
16:15 queued 06:55
created
src/Event/Events/CollaborationDataAdded.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     public function serialize()
87 87
     {
88 88
         $serialized = array(
89
-            'eventId' => (string) $this->eventId,
89
+            'eventId' => (string)$this->eventId,
90 90
             'language' => $this->language->getCode(),
91 91
             'collaborationData' => $this->collaborationData->serialize(),
92 92
         );
Please login to merge, or discard this patch.
src/Offer/ReadModel/JSONLD/CdbXMLItemBaseImporter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- */
3
+     * @file
4
+     */
5 5
 
6 6
 namespace CultuurNet\UDB3\Variations;
7 7
 
Please login to merge, or discard this patch.
src/Place/ReadModel/JSONLD/PlaceLDProjector.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
         $placeLd = $document->getBody();
296 296
 
297 297
         $placeLd->organizer = array(
298
-          '@type' => 'Organizer',
298
+            '@type' => 'Organizer',
299 299
         ) + (array)$this->organizerJSONLD($organizerUpdated->getOrganizerId());
300 300
 
301 301
         $this->repository->save($document->withBody($placeLd));
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $jsonLD->address = $placeCreated->getAddress()->toJsonLd();
151 151
 
152 152
         $calendarJsonLD = $placeCreated->getCalendar()->toJsonLd();
153
-        $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD);
153
+        $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD);
154 154
 
155 155
         $eventType = $placeCreated->getEventType();
156 156
         $jsonLD->terms = [
@@ -197,11 +197,11 @@  discard block
 block discarded – undo
197 197
         $jsonLD->address = $majorInfoUpdated->getAddress()->toJsonLd();
198 198
 
199 199
         $calendarJsonLD = $majorInfoUpdated->getCalendar()->toJsonLd();
200
-        $jsonLD = (object) array_merge((array) $jsonLD, $calendarJsonLD);
200
+        $jsonLD = (object)array_merge((array)$jsonLD, $calendarJsonLD);
201 201
 
202 202
         // Remove old theme and event type.
203
-        $jsonLD->terms = array_filter($jsonLD->terms, function ($term) {
204
-            return $term->domain !== EventType::DOMAIN &&  $term->domain !== Theme::DOMAIN;
203
+        $jsonLD->terms = array_filter($jsonLD->terms, function($term) {
204
+            return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN;
205 205
         });
206 206
 
207 207
         $eventType = $majorInfoUpdated->getEventType();
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
         // Remove all old facilities + get numeric keys.
348 348
         $terms = array_values(array_filter(
349 349
             $terms,
350
-            function ($term) {
350
+            function($term) {
351 351
                 return $term->domain !== Facility::DOMAIN;
352 352
             }
353 353
         ));
Please login to merge, or discard this patch.
src/SearchAPI2/Filters/DoesNotHaveKeyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     public function __construct($keyword)
15 15
     {
16
-        $keyword = (string) $keyword;
16
+        $keyword = (string)$keyword;
17 17
 
18 18
         $this->filterQuery = new FilterQuery(
19 19
             sprintf(
Please login to merge, or discard this patch.
src/Place/Place.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param CalendarInterface $calendar
69 69
      * @param Theme/null $theme
70 70
      *
71
-     * @return Event
71
+     * @return Place
72 72
      */
73 73
     public static function createPlace($id, Title $title, EventType $eventType, Address $address, CalendarInterface $calendar, Theme $theme = null)
74 74
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     /**
82 82
      * Apply the place created event.
83
-     * @param PlaceCreate $placeCreated
83
+     * @param PlaceCreated $placeCreated
84 84
      */
85 85
     protected function applyPlaceCreated(PlaceCreated $placeCreated)
86 86
     {
@@ -110,6 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
     /**
112 112
      * Handle an update command to update organizer.
113
+     * @param string $organizerId
113 114
      */
114 115
     public function updateOrganizer($organizerId)
115 116
     {
@@ -220,7 +221,7 @@  discard block
 block discarded – undo
220 221
      * @param string $cdbXmlNamespaceUri
221 222
      *   The cdb xml namespace uri.
222 223
      *
223
-     * @return Actor
224
+     * @return Place
224 225
      *   The actor.
225 226
      */
226 227
     public static function importFromUDB2Actor(
@@ -250,7 +251,7 @@  discard block
 block discarded – undo
250 251
      * @param string $cdbXmlNamespaceUri
251 252
      *   The cdb xml namespace uri.
252 253
      *
253
-     * @return Actor
254
+     * @return Place
254 255
      *   The actor.
255 256
      */
256 257
     public static function importFromUDB2Event(
Please login to merge, or discard this patch.
src/Place/Events/PlaceImportedFromUDB2Event.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- */
3
+     * @file
4
+     */
5 5
 
6 6
 namespace CultuurNet\UDB3\Variations;
7 7
 
Please login to merge, or discard this patch.