Passed
Push — master ( 1eeb90...3a73e7 )
by Stefan
01:29
created
SKien/Sepa/SepaHelper.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
 
203 203
         //  New Year        Good Day     Easter Monday  1'stMay      1.Christmas   2.Christmas
204 204
         $aTarget2 = array(
205
-             '2019-01-01', '2019-04-18', '2019-04-21', '2019-05-01', '2019-12-25', '2019-12-26'
205
+                '2019-01-01', '2019-04-18', '2019-04-21', '2019-05-01', '2019-12-25', '2019-12-26'
206 206
             ,'2020-01-01', '2020-04-10', '2020-04-13', '2020-05-01', '2020-12-25', '2020-12-26'
207 207
             ,'2021-01-01', '2021-04-02', '2021-04-05', '2021-05-01', '2021-12-25', '2021-12-26'
208 208
             ,'2022-01-01', '2022-04-15', '2022-04-18', '2022-05-01', '2022-12-25', '2022-12-26'
Please login to merge, or discard this 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.