Passed
Push — master ( 1eeb90...3a73e7 )
by Stefan
01:29
created
SKien/Sepa/SepaHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
      */
40 40
     public static function createUID() : string
41 41
     {
42
-        mt_srand((int) microtime(true) * 10000);
43
-        $charid = strtoupper(md5(uniqid((string) rand(), true)));
44
-        $uuid =  substr($charid, 0, 8) . chr(45)
42
+        mt_srand((int)microtime(true) * 10000);
43
+        $charid = strtoupper(md5(uniqid((string)rand(), true)));
44
+        $uuid = substr($charid, 0, 8) . chr(45)
45 45
                 .substr($charid, 8, 4) . chr(45)
46 46
                 .substr($charid, 12, 4) . chr(45)
47
-                .substr($charid, 16,12);
47
+                .substr($charid, 16, 12);
48 48
 
49 49
         return $uuid;
50 50
     }
Please login to merge, or discard this patch.