Test Failed
Push — 1.0.0-dev ( 2dc3fb...7e4712 )
by nguereza
02:54
created
core/classes/model/DBSessionHandlerModel.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
      */
30 30
 	
31 31
     /**
32
-    * DB session handler model class
33
-    */
32
+     * DB session handler model class
33
+     */
34 34
     abstract class DBSessionHandlerModel extends Model {
35 35
 		
36 36
         /**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
          *
41 41
          * @example
42 42
          * 	array(
43
-	 *	      'sid' => '', //VARCHAR(100) Note: this a primary key
44
-	 *	      'sdata' => '', //TEXT
45
-	 *	      'stime' => '', //unix timestamp (INT|BIGINT)
46
-	 *	      'shost' => '', //VARCHAR(255)
47
-	 *	      'sip' => '', //VARCHAR(128) 
48
-	 *	      'sbrowser' => '', //VARCHAR(255) 
49
-	 *	      'skey' => '' //VARCHAR(255) 
50
-	 *	);
43
+         *	      'sid' => '', //VARCHAR(100) Note: this a primary key
44
+         *	      'sdata' => '', //TEXT
45
+         *	      'stime' => '', //unix timestamp (INT|BIGINT)
46
+         *	      'shost' => '', //VARCHAR(255)
47
+         *	      'sip' => '', //VARCHAR(128) 
48
+         *	      'sbrowser' => '', //VARCHAR(255) 
49
+         *	      'skey' => '' //VARCHAR(255) 
50
+         *	);
51 51
          */
52 52
         protected $sessionTableColumns = array();
53 53
 
Please login to merge, or discard this patch.
core/classes/Config.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
             if ($init) {
47 47
                 $this->init();
48 48
                 //@codeCoverageIgnoreStart
49
-                 if (ENVIRONMENT == 'production' && in_array(strtolower($this->config['log_level']), array('debug', 'info', 'notice'))) {
49
+                    if (ENVIRONMENT == 'production' && in_array(strtolower($this->config['log_level']), array('debug', 'info', 'notice'))) {
50 50
                     $this->logger->warning('You are in production environment, please set '
51
-                                           . 'log level to WARNING, ERROR, CRITICAL, ALERT, EMERGENCY to increase the application performance');
51
+                                            . 'log level to WARNING, ERROR, CRITICAL, ALERT, EMERGENCY to increase the application performance');
52 52
                 }
53 53
                 //@codeCoverageIgnoreEnd
54 54
             }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
             if (empty($this->config['base_url'])) {
147 147
                 if (ENVIRONMENT == 'production') {
148 148
                     $this->logger->warning('Application base URL is not set or invalid, please'
149
-                                           . ' set application base URL to increase the application loading time');
149
+                                            . ' set application base URL to increase the application loading time');
150 150
                 }
151 151
                 $baseUrl = null;
152 152
                 $protocol = 'http';
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                                                                     );
174 174
                 } else {
175 175
                     $this->logger->warning('Can not determine the application '
176
-                                           . 'base URL automatically, use http://localhost as default');
176
+                                            . 'base URL automatically, use http://localhost as default');
177 177
                     $baseUrl = 'http://localhost/';
178 178
                 }
179 179
                 $this->config['base_url'] = $baseUrl;
@@ -182,11 +182,11 @@  discard block
 block discarded – undo
182 182
         }
183 183
          
184 184
         /**
185
-        * Return the server port using variable
186
-        *
187
-        * @codeCoverageIgnore
188
-        * @return string
189
-        */
185
+         * Return the server port using variable
186
+         *
187
+         * @codeCoverageIgnore
188
+         * @return string
189
+         */
190 190
         protected function getServerPort() {
191 191
             $globals = & class_loader('GlobalVar', 'classes');
192 192
             $serverPort = $globals->server('SERVER_PORT');
Please login to merge, or discard this patch.
core/classes/Router.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -276,14 +276,14 @@  discard block
 block discarded – undo
276 276
         }
277 277
 
278 278
         /**
279
-        * Setting the route configuration using the configuration file 
280
-        * and additional configuration from param
281
-        * @param array $overwriteConfig the additional configuration 
282
-        * to overwrite with the existing one
283
-        * @param boolean $useConfigFile whether to use route configuration file
284
-        * 
285
-        * @return object
286
-        */
279
+         * Setting the route configuration using the configuration file 
280
+         * and additional configuration from param
281
+         * @param array $overwriteConfig the additional configuration 
282
+         * to overwrite with the existing one
283
+         * @param boolean $useConfigFile whether to use route configuration file
284
+         * 
285
+         * @return object
286
+         */
287 287
         public function setRouteConfiguration(array $overwriteConfig = array(), $useConfigFile = true) {
288 288
             $route = array();
289 289
             if ($useConfigFile && file_exists(CONFIG_PATH . 'routes.php')) {
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
             //the URL like http://domain.com/module/controller/method/arg1/arg2/argn 
365 365
             if (!$this->controller) {
366 366
                 $this->logger->info('Cannot determine the routing information ' 
367
-                       . 'using the predefined routes configuration, will use the request URI parameters');
367
+                        . 'using the predefined routes configuration, will use the request URI parameters');
368 368
                 //determine route parameters using the route URI param
369 369
                 $this->determineRouteParamsFromRequestUri();
370 370
             }
@@ -478,11 +478,11 @@  discard block
 block discarded – undo
478 478
             }
479 479
         }
480 480
 
481
-         /**
482
-         * Remove the URL suffix and query string values if exists
483
-         * @param  string $uri the route URI to process
484
-         * @return string      the final route uri after processed
485
-         */
481
+            /**
482
+             * Remove the URL suffix and query string values if exists
483
+             * @param  string $uri the route URI to process
484
+             * @return string      the final route uri after processed
485
+             */
486 486
         protected function removeSuffixAndQueryStringFromUri($uri) {
487 487
             $this->logger->debug('Check if URL suffix is enabled in the configuration');
488 488
             //remove url suffix from the request URI
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
                 $this->logger->info(
599 599
                                     'After loop in predefined routes configuration,'
600 600
                                     . 'the module name is set but the controller is not set,' 
601
-									. 'so we will use module as the controller'
601
+                                    . 'so we will use module as the controller'
602 602
                                 );
603 603
                 $this->controller = $this->module;
604 604
             }
Please login to merge, or discard this patch.
core/classes/Url.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
                     break;
129 129
                 }
130 130
             }
131
-	    $port = get_instance()->request->server('SERVER_PORT');
131
+        $port = get_instance()->request->server('SERVER_PORT');
132 132
             if ($port && !in_array($port, array(80, 443))) {
133 133
                 $domain .= ':' . $port;
134 134
             }
Please login to merge, or discard this patch.
core/classes/Response.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                 $this->logger->info('Cannot find view [' . $view . '] in module [' . $module . '] '
186 186
                                     . 'using the default location');
187 187
             }
188
-	    if (!$path) {
188
+        if (!$path) {
189 189
                 $path = $this->getDefaultFilePathForView($viewFile);
190 190
             }
191 191
             $this->logger->info('The view file path to be loaded is [' . $path . ']');
@@ -261,12 +261,12 @@  discard block
 block discarded – undo
261 261
             return $this->finalPageContent;
262 262
         }
263 263
 
264
-         /**
265
-         * Set the final page to be rendered
266
-         * @param string $finalPage the content of the final page
267
-         * 
268
-         * @return object
269
-         */
264
+            /**
265
+             * Set the final page to be rendered
266
+             * @param string $finalPage the content of the final page
267
+             * 
268
+             * @return object
269
+             */
270 270
         public function setFinalPageContent($finalPage) {
271 271
             $this->finalPageContent = $finalPage;
272 272
             return $this;
@@ -339,12 +339,12 @@  discard block
 block discarded – undo
339 339
             //@codeCoverageIgnoreEnd
340 340
         }
341 341
 
342
-         /**
343
-         * Dispatch the FINAL_VIEW_READY event
344
-         *             
345
-         * @return string|null the final view content after processing by each listener
346
-         * if they exists otherwise the same content will be returned
347
-         */
342
+            /**
343
+             * Dispatch the FINAL_VIEW_READY event
344
+             *             
345
+             * @return string|null the final view content after processing by each listener
346
+             * if they exists otherwise the same content will be returned
347
+             */
348 348
         protected function dispatchFinalViewEvent() {
349 349
             //dispatch
350 350
             $event = get_instance()->eventdispatcher->dispatch(
@@ -388,12 +388,12 @@  discard block
 block discarded – undo
388 388
                                           && (bool) ini_get('zlib.output_compression') === false;
389 389
         }
390 390
 
391
-         /**
392
-         * Return the default full file path for view
393
-         * @param  string $file    the filename
394
-         * 
395
-         * @return string|null          the full file path
396
-         */
391
+            /**
392
+             * Return the default full file path for view
393
+             * @param  string $file    the filename
394
+             * 
395
+             * @return string|null          the full file path
396
+             */
397 397
         protected function getDefaultFilePathForView($file){
398 398
             $searchDir = array(APPS_VIEWS_PATH, CORE_VIEWS_PATH);
399 399
             $fullFilePath = null;
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
                 $headerModifiedSince = $globals->server('HTTP_IF_MODIFIED_SINCE');
427 427
                 if (!empty($headerModifiedSince) && $lastModified <= strtotime($headerModifiedSince)) {
428 428
                     $this->logger->info('The cache page content is not yet expire for the '
429
-                                         . 'URL [' . $this->currentUrl . '] send 304 header to browser');
429
+                                            . 'URL [' . $this->currentUrl . '] send 304 header to browser');
430 430
                     $this->sendHeaders(304);
431 431
                     return true;
432 432
                 }
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
          */
442 442
         protected function sendCachePageContentToBrowser(&$cache) {
443 443
             $this->logger->info('The cache page content is expired or the browser does '
444
-                 . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->currentUrl . '] '
445
-                 . 'send cache headers to tell the browser');
444
+                    . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->currentUrl . '] '
445
+                    . 'send cache headers to tell the browser');
446 446
             $this->sendHeaders(200);
447 447
             //current page cache key
448 448
             $pageCacheKey = $this->currentUrlCacheKey;
@@ -581,18 +581,18 @@  discard block
 block discarded – undo
581 581
             }
582 582
         }
583 583
 
584
-         /**
585
-         * Set the mandory headers, like security, etc.
586
-         */
584
+            /**
585
+             * Set the mandory headers, like security, etc.
586
+             */
587 587
         protected function setRequiredHeaders() {
588 588
             $requiredHeaders = array(
589 589
                                 'X-XSS-Protection' => '1; mode=block',
590 590
                                 'X-Frame-Options'  => 'SAMEORIGIN'
591 591
                             );
592 592
             foreach ($requiredHeaders as $key => $value) {
593
-               if (!isset($this->headers[$key])) {
593
+                if (!isset($this->headers[$key])) {
594 594
                     $this->headers[$key] = $value;
595
-               } 
595
+                } 
596 596
             }
597 597
         }
598 598
     }
Please login to merge, or discard this patch.
core/classes/Log.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -180,13 +180,13 @@  discard block
 block discarded – undo
180 180
             $this->log(self::DEBUG, $message);
181 181
         } 
182 182
 		
183
-	/**
184
-         * Logs with an arbitrary level.
185
-         *
186
-         * @param  integer|string $level   the log level in integer or string format,
187
-         * if is string will convert into integer. 
188
-         * @param  string $message the log message to be saved
189
-         */
183
+    /**
184
+     * Logs with an arbitrary level.
185
+     *
186
+     * @param  integer|string $level   the log level in integer or string format,
187
+     * if is string will convert into integer. 
188
+     * @param  string $message the log message to be saved
189
+     */
190 190
         public function log($level, $message) {
191 191
             $configLogLevel = get_config('log_level');
192 192
             if (!$configLogLevel) {
@@ -198,11 +198,11 @@  discard block
 block discarded – undo
198 198
                 //NOTE: here need put the show_error() "logging" to false 
199 199
                 //to prevent self function loop call
200 200
                 show_error('Invalid config log level [' . $configLogLevel . '], '
201
-                           . 'the value must be one of the following: ' 
202
-                           . implode(', ', array_map('strtoupper', self::$validConfigLevel))
203
-                           , 'Log Config Error', 
204
-                           $logging = false
205
-                       );
201
+                            . 'the value must be one of the following: ' 
202
+                            . implode(', ', array_map('strtoupper', self::$validConfigLevel))
203
+                            , 'Log Config Error', 
204
+                            $logging = false
205
+                        );
206 206
                 return;	
207 207
             }
208 208
 			
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         protected function levelCanSaveLog($level) {
272 272
             $result = true;
273 273
             $configLogLevel = get_config('log_level');
274
-             //check if can save log regarding the log level configuration
274
+                //check if can save log regarding the log level configuration
275 275
             $configLevel = self::getLevelValue($configLogLevel);
276 276
             if ($configLevel > $level) {
277 277
                 //can't log
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
                 //NOTE: here need put the show_error() "logging" to false 
352 352
                 //to prevent self function loop call
353 353
                 show_error('Error : the log dir does not exist or is not writable',
354
-                           'Log directory error', $logging = false);
354
+                            'Log directory error', $logging = false);
355 355
             }
356 356
             return $logSavePath . 'logs-' . date('Y-m-d') . '.log';
357 357
         }
Please login to merge, or discard this patch.
core/bootstrap.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,32 +1,32 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
     defined('ROOT_PATH') || exit('Access denied');
3
-     /**
4
-     * TNH Framework
5
-     *
6
-     * A simple PHP framework using HMVC architecture
7
-     *
8
-     * This content is released under the MIT License (MIT)
9
-     *
10
-     * Copyright (c) 2017 TNH Framework
11
-     *
12
-     * Permission is hereby granted, free of charge, to any person obtaining a copy
13
-     * of this software and associated documentation files (the "Software"), to deal
14
-     * in the Software without restriction, including without limitation the rights
15
-     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
-     * copies of the Software, and to permit persons to whom the Software is
17
-     * furnished to do so, subject to the following conditions:
18
-     *
19
-     * The above copyright notice and this permission notice shall be included in all
20
-     * copies or substantial portions of the Software.
21
-     *
22
-     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
-     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
-     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
-     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
-     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
-     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
-     * SOFTWARE.
29
-     */
3
+        /**
4
+         * TNH Framework
5
+         *
6
+         * A simple PHP framework using HMVC architecture
7
+         *
8
+         * This content is released under the MIT License (MIT)
9
+         *
10
+         * Copyright (c) 2017 TNH Framework
11
+         *
12
+         * Permission is hereby granted, free of charge, to any person obtaining a copy
13
+         * of this software and associated documentation files (the "Software"), to deal
14
+         * in the Software without restriction, including without limitation the rights
15
+         * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+         * copies of the Software, and to permit persons to whom the Software is
17
+         * furnished to do so, subject to the following conditions:
18
+         *
19
+         * The above copyright notice and this permission notice shall be included in all
20
+         * copies or substantial portions of the Software.
21
+         *
22
+         * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+         * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+         * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+         * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+         * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+         * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+         * SOFTWARE.
29
+         */
30 30
 
31 31
     /**
32 32
      *  @file bootstrap.php
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
                     . '] please install a PHP version that is compatible.', 'PHP Error environment');	
94 94
     }
95 95
     $LOGGER->info('PHP version [' . phpversion() . '] is OK [REQUIRED MINIMUM: ' . TNH_MIN_PHP_VERSION 
96
-                   . 'REQUIRED MAXIMUM: ' . TNH_MAX_PHP_VERSION . '], application can work without any issue');
96
+                    . 'REQUIRED MAXIMUM: ' . TNH_MAX_PHP_VERSION . '], application can work without any issue');
97 97
 
98 98
     /**
99 99
      * Setting of the PHP error message handling function
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     /**
156 156
      * Register controllers autoload function
157 157
      */
158
-     spl_autoload_register('autoload_controller');
158
+        spl_autoload_register('autoload_controller');
159 159
 
160 160
     /**
161 161
      * Loading Security class
Please login to merge, or discard this patch.
core/classes/Module.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
          */
59 59
         public function add($name) {
60 60
             if (in_array($name, $this->list)) {
61
-               $this->logger->warning('The module [' .$name. '] already added skipping.');
62
-               return $this;
61
+                $this->logger->warning('The module [' .$name. '] already added skipping.');
62
+                return $this;
63 63
             }
64 64
             $this->list[] = $name;
65 65
             return $this;
@@ -91,10 +91,10 @@  discard block
 block discarded – undo
91 91
             $this->list = array();
92 92
         }
93 93
 
94
-         /**
95
-         * Get the list of module loaded
96
-         * @return array the module list
97
-         */
94
+            /**
95
+             * Get the list of module loaded
96
+             * @return array the module list
97
+             */
98 98
         public function getModuleList() {
99 99
             return $this->list;
100 100
         }
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
             $this->logger->debug('Check if the application contains the modules ...');
242 242
             $dirList = glob(MODULE_PATH . '*', GLOB_ONLYDIR);
243 243
             if ($dirList !== false) {
244
-               $this->list = array_map('basename', $dirList);
244
+                $this->list = array_map('basename', $dirList);
245 245
             }
246 246
             if (!empty($this->list)) {
247 247
                 $this->logger->info('The application contains the module below [' . implode(', ', $this->list) . ']');
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
             $filePath = MODULE_PATH . $module . DS . $type . DS . $classFile;
265 265
             if (file_exists($filePath)) {
266 266
                 $this->logger->info('Found class [' . $class . '] in module [' . $module . '] '
267
-                                     . 'for [' . $type . '] the file path is [' . $filePath . ']');
267
+                                        . 'for [' . $type . '] the file path is [' . $filePath . ']');
268 268
                 return $filePath;
269 269
             }
270 270
             $this->logger->info('Class [' . $class . '] does not exist in the module [' . $module . '] for [' . $type . ']');
Please login to merge, or discard this patch.
core/classes/database/DatabaseConnection.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -42,28 +42,28 @@  discard block
 block discarded – undo
42 42
          */
43 43
         private $driver = null;
44 44
 
45
-         /**
46
-         * The database hostname
47
-         * @var string
48
-         */
45
+            /**
46
+             * The database hostname
47
+             * @var string
48
+             */
49 49
         private $hostname = null;
50 50
 
51
-          /**
52
-         * The database port
53
-         * @var integer
54
-         */
51
+            /**
52
+             * The database port
53
+             * @var integer
54
+             */
55 55
         private $port = null;
56 56
         
57
-         /**
58
-         * The database username
59
-         * @var string
60
-         */
57
+            /**
58
+             * The database username
59
+             * @var string
60
+             */
61 61
         private $username = null;
62 62
 
63
-         /**
64
-         * The database password
65
-         * @var string
66
-         */
63
+            /**
64
+             * The database password
65
+             * @var string
66
+             */
67 67
         private $password = null;
68 68
 
69 69
         /**
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
          */
73 73
         private $databaseName = null;
74 74
 
75
-         /**
76
-         * The database charset
77
-         * @var string
78
-         */
75
+            /**
76
+             * The database charset
77
+             * @var string
78
+             */
79 79
         private $charset = null;
80 80
 
81 81
         /**
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
          */
85 85
         private $collation = null;
86 86
 
87
-         /**
88
-         * The database tables prefix
89
-         * @var string
90
-         */
87
+            /**
88
+             * The database tables prefix
89
+             * @var string
90
+             */
91 91
         private $prefix = null;
92 92
 
93 93
         /**
@@ -113,11 +113,11 @@  discard block
 block discarded – undo
113 113
             }
114 114
         }
115 115
 
116
-         /**
117
-         * This is method is used to connect to database
118
-         * 
119
-         * @return boolean true in case of successfully connection false if error
120
-         */
116
+            /**
117
+             * This is method is used to connect to database
118
+             * 
119
+             * @return boolean true in case of successfully connection false if error
120
+             */
121 121
         public function connect() {
122 122
             try {
123 123
                 if(empty($this->config) && file_exists(CONFIG_PATH . 'database.php')) {
@@ -182,9 +182,9 @@  discard block
 block discarded – undo
182 182
             );
183 183
             if ($port) {
184 184
                 $driversPort = array(
185
-                      'mysql'  => 'port=' . $port . ';',
186
-                      'pgsql'  => 'port=' . $port . ';',
187
-                      'oracle' => ':' . $port
185
+                        'mysql'  => 'port=' . $port . ';',
186
+                        'pgsql'  => 'port=' . $port . ';',
187
+                        'oracle' => ':' . $port
188 188
                 );
189 189
                 if (isset($driversPort[$driver])) {
190 190
                     $port = $driversPort[$driver];
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
             $this->populatePropertiesFromConfig();
423 423
 
424 424
             if (!empty($this->config)) {
425
-               //For logging
425
+                //For logging
426 426
                 $configInfo = $this->config;
427 427
                 //Hide password from log
428 428
                 $configInfo['password'] = string_hidden($this->getPassword());
@@ -431,11 +431,11 @@  discard block
 block discarded – undo
431 431
             return $this;
432 432
         }
433 433
         
434
-         /**
435
-         * Update the properties using the current database configuration
436
-         * 
437
-         * @return object the current instance
438
-         */
434
+            /**
435
+             * Update the properties using the current database configuration
436
+             * 
437
+             * @return object the current instance
438
+             */
439 439
         protected function populatePropertiesFromConfig() {
440 440
             foreach ($this->config as $key => $value) {
441 441
                 $setter = 'set' . ucfirst($key);
Please login to merge, or discard this patch.