Passed
Push — 1.0.0-dev ( b87257...048006 )
by nguereza
03:32
created
index.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -189,11 +189,11 @@
 block discarded – undo
189 189
      */
190 190
     define('VAR_PATH', ROOT_PATH . 'var' . DS);
191 191
     
192
-     /**
193
-     * The path to the directory of your cache files.
194
-     *
195
-     * This feature is available currently for database and views.
196
-     */
192
+        /**
193
+         * The path to the directory of your cache files.
194
+         *
195
+         * This feature is available currently for database and views.
196
+         */
197 197
     define('CACHE_PATH', VAR_PATH . 'cache' . DS);
198 198
     
199 199
     /**
Please login to merge, or discard this patch.
core/classes/Config.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -160,15 +160,15 @@
 block discarded – undo
160 160
         }
161 161
          
162 162
         /**
163
-        * Return the server port using variable
164
-        *
165
-        * @codeCoverageIgnore
166
-        * @return string
167
-        */
163
+         * Return the server port using variable
164
+         *
165
+         * @codeCoverageIgnore
166
+         * @return string
167
+         */
168 168
         protected static function getServerPort() {
169 169
             $serverPort = 80;
170 170
             if (isset($_SERVER['SERVER_PORT'])) {
171
-                 $serverPort = $_SERVER['SERVER_PORT'];
171
+                    $serverPort = $_SERVER['SERVER_PORT'];
172 172
             }
173 173
             $port = '';
174 174
             if ((is_https() && $serverPort != 443) || (!is_https() && $serverPort != 80)) {
Please login to merge, or discard this patch.