Passed
Pull Request — master (#14)
by Kris
01:24
created
lib/ShellTablePrinter.php 1 patch
Indentation   +19 added lines, -19 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
@@ -157,17 +157,17 @@  discard block
 block discarded – undo
157 157
         return self::getCliString(self::$verticalInnerSeparator === '' ? $str : substr($str, 0, mb_strlen($str) -1). self::$verticalSeparator, $args);
158 158
     }
159 159
 
160
-     /**
161
-     * Gets a formated table row separator
162
-     *
163
-     * @access public
164
-     * @static method
165
-     * @param  string   [$color]        The text color for the wall row
166
-     * @param  string   [$bgcolor]      The back color for the wall row
167
-     * @param  string   [$option]+...   The text styles for the wall row
168
-     *
169
-     * @return string         
170
-     */
160
+        /**
161
+         * Gets a formated table row separator
162
+         *
163
+         * @access public
164
+         * @static method
165
+         * @param  string   [$color]        The text color for the wall row
166
+         * @param  string   [$bgcolor]      The back color for the wall row
167
+         * @param  string   [$option]+...   The text styles for the wall row
168
+         *
169
+         * @return string         
170
+         */
171 171
     public static function tableSeparator()
172 172
     {
173 173
         $args = func_get_args();
@@ -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.
demo/demo.table.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 Console::$horizontalSeparator = '-';            // change the horizontal separator
110 110
 Console::$tableCellPadding = '';                // no padding 
111 111
 Console::$verticalInnerSeparator = '   ';       // blank separator
112
-     Console::$verticalSeparator = '   ';       // no top left/right separator except a margin..
112
+        Console::$verticalSeparator = '   ';       // no top left/right separator except a margin..
113 113
 // Console::$verticalHeaderSeparator = '';      // no top left/right separator (not needed)
114 114
 
115 115
 // table start
Please login to merge, or discard this patch.