Completed
Push — master ( 318379...7c23c1 )
by Kris
23s queued 10s
created
lib/ShellTablePrinter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -58,12 +58,12 @@  discard block
 block discarded – undo
58 58
      */
59 59
     protected static $defaultVerticalSign = '|';
60 60
 
61
-     /**
62
-     * The default vertical sign. 
63
-     *
64
-     * @access protected
65
-     * @var    string
66
-     */
61
+        /**
62
+         * The default vertical sign. 
63
+         *
64
+         * @access protected
65
+         * @var    string
66
+         */
67 67
     protected static $defaultVerticalInnerSign = '+';
68 68
 
69 69
     /**
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     public static $verticalHeaderSeparator   = '+';
108 108
 
109
-   /**
109
+    /**
110 110
      * The vertical separator sign. 
111 111
      *
112 112
      * @access public
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
      *
258 258
      * @return string          
259 259
      */
260
-     public static function tableRow()
260
+        public static function tableRow()
261 261
     {
262 262
         // get and parse arguments:
263 263
         //  - extract first argument (columns list)
Please login to merge, or discard this patch.
lib/Program.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public static function inArguments(array $arguments, string $shortArg, string $longArg)
49 49
     {
50
-          return array_key_exists($shortArg, $arguments) || array_key_exists($longArg, $arguments);
50
+            return array_key_exists($shortArg, $arguments) || array_key_exists($longArg, $arguments);
51 51
     }
52 52
 
53 53
     /**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public static function getArgumentValue(array $arguments, string $shortArg, string $longArg):? string
67 67
     {
68
-          return array_key_exists($shortArg, $arguments) ? $arguments[$shortArg] : 
68
+            return array_key_exists($shortArg, $arguments) ? $arguments[$shortArg] : 
69 69
                  (array_key_exists($longArg, $arguments) ? $arguments[$longArg]  : null);
70 70
     }
71 71
 
Please login to merge, or discard this patch.