@@ -189,11 +189,11 @@ |
||
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 | /** |
@@ -160,15 +160,15 @@ |
||
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)) { |