Completed
Pull Request — master (#103)
by Kristof
08:54
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/CollaborationData.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -252,14 +252,14 @@
 block discarded – undo
252 252
     public function serialize()
253 253
     {
254 254
         $data = [
255
-            'subBrand' => (string) $this->subBrand,
256
-            'title' => (string) $this->title,
257
-            'text' => (string) $this->text,
258
-            'copyright' => (string) $this->copyright,
259
-            'keyword' => (string) $this->keyword,
260
-            'image' => (string) $this->image,
261
-            'article' => (string) $this->article,
262
-            'link' => (string) $this->link,
255
+            'subBrand' => (string)$this->subBrand,
256
+            'title' => (string)$this->title,
257
+            'text' => (string)$this->text,
258
+            'copyright' => (string)$this->copyright,
259
+            'keyword' => (string)$this->keyword,
260
+            'image' => (string)$this->image,
261
+            'article' => (string)$this->article,
262
+            'link' => (string)$this->link,
263 263
         ];
264 264
 
265 265
         return array_filter($data, 'strlen');
Please login to merge, or discard this patch.