Completed
Pull Request — master (#472)
by
unknown
02:37
created
src/ContactPoint.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@
 block discarded – undo
50 50
     public function serialize(): array
51 51
     {
52 52
         return [
53
-          'phone' => $this->phones,
54
-          'email' => $this->emails,
55
-          'url' => $this->urls,
53
+            'phone' => $this->phones,
54
+            'email' => $this->emails,
55
+            'url' => $this->urls,
56 56
         ];
57 57
     }
58 58
 
Please login to merge, or discard this patch.
src/Organizer/Events/OrganizerEvent.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function serialize(): array
25 25
     {
26 26
         return [
27
-          'organizer_id' => $this->organizerId,
27
+            'organizer_id' => $this->organizerId,
28 28
         ];
29 29
     }
30 30
 }
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
@@ -65,10 +65,10 @@
 block discarded – undo
65 65
     public function serialize(): array
66 66
     {
67 67
         return [
68
-          'streetAddress' => $this->streetAddress->toNative(),
69
-          'postalCode' => $this->postalCode->toNative(),
70
-          'addressLocality' => $this->locality->toNative(),
71
-          'addressCountry' => $this->countryCode,
68
+            'streetAddress' => $this->streetAddress->toNative(),
69
+            'postalCode' => $this->postalCode->toNative(),
70
+            'addressLocality' => $this->locality->toNative(),
71
+            'addressCountry' => $this->countryCode,
72 72
         ];
73 73
     }
74 74
 
Please login to merge, or discard this patch.
src/Category.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
     public function serialize(): array
57 57
     {
58 58
         return [
59
-          'id' => $this->id,
60
-          'label' => $this->label,
61
-          'domain' => $this->domain,
59
+            'id' => $this->id,
60
+            'label' => $this->label,
61
+            'domain' => $this->domain,
62 62
         ];
63 63
     }
64 64
 
Please login to merge, or discard this patch.