Completed
Pull Request — master (#259)
by
unknown
10:27
created
src/Calendar.php 1 patch
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.
src/Cdb/PriceDescriptionParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $valuePattern = '\€?\s*[\d,]+\s*\€?';
49 49
 
50 50
         $pricePattern =
51
-          "/(?<name>{$namePattern}):\s*(?<value>{$valuePattern})/u";
51
+            "/(?<name>{$namePattern}):\s*(?<value>{$valuePattern})/u";
52 52
 
53 53
         $numberFormat = $this->numberFormatRepository->get('nl-BE');
54 54
         $currencyFormatter = new NumberFormatter(
Please login to merge, or discard this patch.
src/ContactPoint.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,9 +67,9 @@
 block discarded – undo
67 67
     public function serialize()
68 68
     {
69 69
         return [
70
-          'phone' => $this->phones,
71
-          'email' => $this->emails,
72
-          'url' => $this->urls,
70
+            'phone' => $this->phones,
71
+            'email' => $this->emails,
72
+            'url' => $this->urls,
73 73
         ];
74 74
     }
75 75
 
Please login to merge, or discard this patch.