Completed
Push — master ( 58310a...e01932 )
by Ramin
02:03
created
src/Models/Requests/SendMessageRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $chunks = str_split($this->getMessage(), $maxSize);
85 85
         $numberOfParts = count($chunks);
86 86
 
87
-        $randomString = substr(sha1(rand(1,10)), -8);
87
+        $randomString = substr(sha1(rand(1, 10)), -8);
88 88
 
89 89
         for ($i = 0; $i < count($chunks); $i++) {
90 90
             $preString = strtr(
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 ]
97 97
             );
98 98
 
99
-            $chunks[$i] = $preString.$chunks[$i];
99
+            $chunks[$i] = $preString . $chunks[$i];
100 100
         }
101 101
 
102 102
         return $chunks;
Please login to merge, or discard this patch.