Completed
Branch master (4709b1)
by Rouven
02:07
created
Category
src/GeneratorTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,13 +22,13 @@
 block discarded – undo
22 22
      */
23 23
     protected function data($tickAdjust = 0)
24 24
     {
25
-        $data = ($this->tick() + $tickAdjust) . '|' . $this->action;
25
+        $data = ($this->tick() + $tickAdjust).'|'.$this->action;
26 26
 
27 27
         if ($this->userId) {
28
-            $data .= '|' . $this->userId;
28
+            $data .= '|'.$this->userId;
29 29
         }
30 30
         if ($this->sessionToken) {
31
-            $data .= '|' . $this->sessionToken;
31
+            $data .= '|'.$this->sessionToken;
32 32
         }
33 33
 
34 34
         return $data;
Please login to merge, or discard this patch.