Completed
Pull Request — master (#322)
by Luc
05:07
created
src/Location/Location.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,9 +62,9 @@
 block discarded – undo
62 62
     public function serialize()
63 63
     {
64 64
         return [
65
-          'cdbid' => $this->cdbid,
66
-          'name' => $this->name->toNative(),
67
-          'address' => $this->address->serialize(),
65
+            'cdbid' => $this->cdbid,
66
+            'name' => $this->name->toNative(),
67
+            'address' => $this->address->serialize(),
68 68
         ];
69 69
     }
70 70
 
Please login to merge, or discard this patch.
src/BookingInfo.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -132,14 +132,14 @@
 block discarded – undo
132 132
     public function serialize()
133 133
     {
134 134
         return [
135
-          'phone' => $this->phone,
136
-          'email' => $this->email,
137
-          'url' => $this->url,
138
-          'urlLabel' => $this->urlLabel,
139
-          'name' => $this->name,
140
-          'description' => $this->description,
141
-          'availabilityStarts' => $this->availabilityStarts,
142
-          'availabilityEnds' => $this->availabilityEnds,
135
+            'phone' => $this->phone,
136
+            'email' => $this->email,
137
+            'url' => $this->url,
138
+            'urlLabel' => $this->urlLabel,
139
+            'name' => $this->name,
140
+            'description' => $this->description,
141
+            'availabilityStarts' => $this->availabilityStarts,
142
+            'availabilityEnds' => $this->availabilityEnds,
143 143
         ];
144 144
     }
145 145
 
Please login to merge, or discard this patch.