Passed
Push — master ( d4a5ea...20f78d )
by Michiel
07:52
created
classes/phing/types/selectors/SizeSelector.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
     private const VALUE_KEY = 'value';
46 46
     private const WHEN_KEY  = 'when';
47 47
     private const WHEN      = [-1 => 'less',
48
-                               0  => 'equal',
49
-                               1  => 'more',];
48
+                                0  => 'equal',
49
+                                1  => 'more',];
50 50
 
51 51
     public function __toString(): string
52 52
     {
Please login to merge, or discard this patch.
classes/phing/util/SizeHelper.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@
 block discarded – undo
29 29
     const KILO = 1000;
30 30
     const KIBI = 1024;
31 31
     const SI   = [1 => ['kB', 'kilo', 'kilobyte',],
32
-                  2 => ['MB', 'mega', 'megabyte',],
33
-                  3 => ['GB', 'giga', 'gigabyte',],
34
-                  4 => ['TB', 'tera', 'terabyte',],];
32
+                    2 => ['MB', 'mega', 'megabyte',],
33
+                    3 => ['GB', 'giga', 'gigabyte',],
34
+                    4 => ['TB', 'tera', 'terabyte',],];
35 35
     const IEC  = [0 => [self::B,],
36
-                  1 => ['k', 'Ki', 'KiB', 'kibi', 'kibibyte',],
37
-                  2 => ['M', 'Mi', 'MiB', 'mebi', 'mebibyte',],
38
-                  3 => ['G', 'Gi', 'GiB', 'gibi', 'gibibyte',],
39
-                  4 => ['T', 'Ti', 'TiB', 'tebi', 'tebibyte',],];
36
+                    1 => ['k', 'Ki', 'KiB', 'kibi', 'kibibyte',],
37
+                    2 => ['M', 'Mi', 'MiB', 'mebi', 'mebibyte',],
38
+                    3 => ['G', 'Gi', 'GiB', 'gibi', 'gibibyte',],
39
+                    4 => ['T', 'Ti', 'TiB', 'tebi', 'tebibyte',],];
40 40
 
41 41
     /**
42 42
      * Converts strings like '512K', '0.5G', '50M' to bytes.
Please login to merge, or discard this patch.