Completed
Push — master ( aa408c...a11dc1 )
by Kristof
05:13
created
src/Location/Location.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,9 +66,9 @@
 block discarded – undo
66 66
     public function serialize()
67 67
     {
68 68
         return [
69
-          'cdbid' => $this->cdbid,
70
-          'name' => $this->name->toNative(),
71
-          'address' => $this->address->serialize()
69
+            'cdbid' => $this->cdbid,
70
+            'name' => $this->name->toNative(),
71
+            'address' => $this->address->serialize()
72 72
         ];
73 73
     }
74 74
 
Please login to merge, or discard this patch.
src/Event/Event.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * Factory method to create a new event.
82 82
      *
83
-     * @param $eventId
83
+     * @param string $eventId
84 84
      * @param Title $title
85 85
      * @param EventType $eventType
86 86
      * @param Location $location
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@
 block discarded – undo
271 271
      */
272 272
     public function applyAudienceUpdated(AudienceUpdated $audienceUpdated)
273 273
     {
274
-        $this->audience= $audienceUpdated->getAudience();
274
+        $this->audience = $audienceUpdated->getAudience();
275 275
     }
276 276
 
277 277
     /**
Please login to merge, or discard this patch.
src/Address/Address.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
     public function serialize()
82 82
     {
83 83
         return [
84
-          'streetAddress' => $this->streetAddress->toNative(),
85
-          'postalCode' => $this->postalCode->toNative(),
86
-          'addressLocality' => $this->locality->toNative(),
87
-          'addressCountry' => $this->countryCode,
84
+            'streetAddress' => $this->streetAddress->toNative(),
85
+            'postalCode' => $this->postalCode->toNative(),
86
+            'addressLocality' => $this->locality->toNative(),
87
+            'addressCountry' => $this->countryCode,
88 88
         ];
89 89
     }
90 90
 
Please login to merge, or discard this patch.
src/Calendar.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         );
85 85
 
86 86
         $calendar = [
87
-          'type' => $this->type,
87
+            'type' => $this->type,
88 88
         ];
89 89
 
90 90
         empty($this->startDate) ?: $calendar['startDate'] = $this->startDate->format(DateTime::ATOM);
@@ -167,9 +167,9 @@  discard block
 block discarded – undo
167 167
             $jsonLd['subEvent'] = array();
168 168
             foreach ($timestamps as $timestamp) {
169 169
                 $jsonLd['subEvent'][] = array(
170
-                  '@type' => 'Event',
171
-                  'startDate' => $timestamp->getStartDate()->format(DateTime::ATOM),
172
-                  'endDate' => $timestamp->getEndDate()->format(DateTime::ATOM),
170
+                    '@type' => 'Event',
171
+                    'startDate' => $timestamp->getStartDate()->format(DateTime::ATOM),
172
+                    'endDate' => $timestamp->getEndDate()->format(DateTime::ATOM),
173 173
                 );
174 174
             }
175 175
         }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         array $openingHours = array()
56 56
     ) {
57 57
         if (($type->is(CalendarType::MULTIPLE()) || $type->is(CalendarType::SINGLE())) && empty($startDate)) {
58
-            throw new \UnexpectedValueException('Start date can not be empty for calendar type: ' . $type . '.');
58
+            throw new \UnexpectedValueException('Start date can not be empty for calendar type: '.$type.'.');
59 59
         }
60 60
 
61 61
         if ($type->is(CalendarType::PERIODIC()) && (empty($startDate) || empty($endDate))) {
@@ -83,14 +83,14 @@  discard block
 block discarded – undo
83 83
     public function serialize()
84 84
     {
85 85
         $serializedTimestamps = array_map(
86
-            function (Timestamp $timestamp) {
86
+            function(Timestamp $timestamp) {
87 87
                 return $timestamp->serialize();
88 88
             },
89 89
             $this->timestamps
90 90
         );
91 91
 
92 92
         $serializedOpeningHours = array_map(
93
-            function (OpeningHour $openingHour) {
93
+            function(OpeningHour $openingHour) {
94 94
                 return $openingHour->serialize();
95 95
             },
96 96
             $this->openingHours
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
             !empty($data['startDate']) ? self::deserializeDateTime($data['startDate']) : null,
119 119
             !empty($data['endDate']) ? self::deserializeDateTime($data['endDate']) : null,
120 120
             !empty($data['timestamps']) ? array_map(
121
-                function ($timestamp) {
121
+                function($timestamp) {
122 122
                     return Timestamp::deserialize($timestamp);
123 123
                 },
124 124
                 $data['timestamps']
125 125
             ) : [],
126 126
             !empty($data['openingHours']) ? array_map(
127
-                function ($openingHour) {
127
+                function($openingHour) {
128 128
                     return OpeningHour::deserialize($openingHour);
129 129
                 },
130 130
                 $data['openingHours']
Please login to merge, or discard this patch.
src/PriceInfo/Price.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         }
22 22
 
23 23
         $precision = 0;
24
-        return new Price((int) round($value * 100, $precision));
24
+        return new Price((int)round($value * 100, $precision));
25 25
     }
26 26
 
27 27
     /**
Please login to merge, or discard this patch.
src/Offer/Security/SearchQueryFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
         StringLiteral $constraint,
47 47
         StringLiteral $offerId
48 48
     ) {
49
-        $constraintStr = '(' . strtolower($constraint->toNative()) . ')';
49
+        $constraintStr = '('.strtolower($constraint->toNative()).')';
50 50
         $offerIdStr = $offerId->toNative();
51 51
 
52
-        return '(' . $constraintStr . ' AND cdbid:' . $offerIdStr . ')';
52
+        return '('.$constraintStr.' AND cdbid:'.$offerIdStr.')';
53 53
     }
54 54
 }
Please login to merge, or discard this patch.
src/Organizer/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
                 if ($address) {
64 64
                     $address = new Address(
65
-                        new Street($address->getStreet() . ' ' . $address->getHouseNumber()),
65
+                        new Street($address->getStreet().' '.$address->getHouseNumber()),
66 66
                         new PostalCode($address->getZip()),
67 67
                         new Locality($address->getCity()),
68 68
                         Country::fromNative($address->getCountry())
Please login to merge, or discard this patch.
src/Cdb/ExternalId/ArrayMappingService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function getCdbId($externalId)
26 26
     {
27 27
         if (isset($this->externalIdMapping[$externalId])) {
28
-            return (string) $this->externalIdMapping[$externalId];
28
+            return (string)$this->externalIdMapping[$externalId];
29 29
         } else {
30 30
             return null;
31 31
         }
Please login to merge, or discard this patch.
src/LabelCollection.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         array_walk(
18 18
             $labels,
19
-            function ($item) {
19
+            function($item) {
20 20
                 if (!$item instanceof Label) {
21 21
                     throw new \InvalidArgumentException(
22 22
                         'Argument $labels should only contain members of type Label'
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $labels = array_filter(
53 53
             $this->labels,
54
-            function (Label $existingLabel) use ($label) {
54
+            function(Label $existingLabel) use ($label) {
55 55
                 return !$existingLabel->equals($label);
56 56
             }
57 57
         );
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $equalLabels = array_filter(
77 77
             $this->labels,
78
-            function (Label $existingLabel) use ($label) {
78
+            function(Label $existingLabel) use ($label) {
79 79
                 return $label->equals($existingLabel);
80 80
             }
81 81
         );
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         $intersectLabels = array_filter(
124 124
             $this->labels,
125
-            function ($label) use ($labelCollection) {
125
+            function($label) use ($labelCollection) {
126 126
                 return $labelCollection->contains($label);
127 127
             }
128 128
         );
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
     public function toStrings()
156 156
     {
157 157
         $labels = array_map(
158
-            function (Label $label) {
159
-                return (string) $label;
158
+            function(Label $label) {
159
+                return (string)$label;
160 160
             },
161 161
             $this->labels
162 162
         );
Please login to merge, or discard this patch.