Passed
Push — master ( c74e83...4330b5 )
by test
02:39
created
src/Kernel/Helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
  */
11 11
 function msgRandom($length = 5): int
12 12
 {
13
-    $start = (int)str_pad(1, $length, '0', STR_PAD_RIGHT);
14
-    $end = (int)str_pad(9, $length, '9', STR_PAD_RIGHT);
13
+    $start = (int) str_pad(1, $length, '0', STR_PAD_RIGHT);
14
+    $end = (int) str_pad(9, $length, '9', STR_PAD_RIGHT);
15 15
 
16 16
     return mt_rand($start, $end);
17 17
 }
Please login to merge, or discard this patch.