Passed
Push — 1.0.0-dev ( 896dae...8851fa )
by nguereza
02:32
created
core/classes/Security.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,10 +98,10 @@
 block discarded – undo
98 98
         }
99 99
 		
100 100
         /**
101
-        * This method is used to check the whitelist IP address access
102
-        *
103
-        * @return boolean
104
-        */
101
+         * This method is used to check the whitelist IP address access
102
+         *
103
+         * @return boolean
104
+         */
105 105
         public function checkWhiteListIpAccess() {
106 106
             $this->logger->debug('Validation of the IP address access ...');
107 107
             $this->logger->debug('Check if whitelist IP access is enabled in the configuration ...');
Please login to merge, or discard this patch.
core/classes/Response.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
             } else {
188 188
                 $this->logger->info('Cannot find view [' . $view . '] in module [' . $module . '] using the default location');
189 189
             }
190
-			if (!$path) {
190
+            if (!$path) {
191 191
                 $path = $this->getDefaultFilePathForView($viewFile);
192 192
             }
193 193
             $this->logger->info('The view file path to be loaded is [' . $path . ']');
@@ -290,12 +290,12 @@  discard block
 block discarded – undo
290 290
             return $this->_pageRender;
291 291
         }
292 292
 
293
-         /**
294
-         * Set the final page to be rendered
295
-         * @param string $finalPage the content of the final page
296
-         * 
297
-         * @return object
298
-         */
293
+            /**
294
+             * Set the final page to be rendered
295
+             * @param string $finalPage the content of the final page
296
+             * 
297
+             * @return object
298
+             */
299 299
         public function setFinalPageContent($finalPage) {
300 300
             $this->_pageRender = $finalPage;
301 301
             return $this;
@@ -363,12 +363,12 @@  discard block
 block discarded – undo
363 363
             ob_end_flush();
364 364
         }
365 365
 
366
-         /**
367
-         * Return the default full file path for view
368
-         * @param  string $file    the filename
369
-         * 
370
-         * @return string|null          the full file path
371
-         */
366
+            /**
367
+             * Return the default full file path for view
368
+             * @param  string $file    the filename
369
+             * 
370
+             * @return string|null          the full file path
371
+             */
372 372
         protected function getDefaultFilePathForView($file){
373 373
             $searchDir = array(APPS_VIEWS_PATH, CORE_VIEWS_PATH);
374 374
             $fullFilePath = null;
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
                 $headerModifiedSince = $globals->server('HTTP_IF_MODIFIED_SINCE');
402 402
                 if (!empty($headerModifiedSince) && $lastModified <= strtotime($headerModifiedSince)) {
403 403
                     $this->logger->info('The cache page content is not yet expire for the '
404
-                                         . 'URL [' . $this->_currentUrl . '] send 304 header to browser');
404
+                                            . 'URL [' . $this->_currentUrl . '] send 304 header to browser');
405 405
                     $this->sendHeaders(304);
406 406
                     return true;
407 407
                 }
@@ -416,8 +416,8 @@  discard block
 block discarded – undo
416 416
          */
417 417
         protected function sendCachePageContentToBrowser(&$cache) {
418 418
             $this->logger->info('The cache page content is expired or the browser does '
419
-                 . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->_currentUrl . '] '
420
-                 . 'send cache headers to tell the browser');
419
+                    . 'not send the HTTP_IF_MODIFIED_SINCE header for the URL [' . $this->_currentUrl . '] '
420
+                    . 'send cache headers to tell the browser');
421 421
 
422 422
             $this->sendHeaders(200);
423 423
             //current page cache key
@@ -559,18 +559,18 @@  discard block
 block discarded – undo
559 559
             }
560 560
         }
561 561
 
562
-         /**
563
-         * Set the mandory headers, like security, etc.
564
-         */
562
+            /**
563
+             * Set the mandory headers, like security, etc.
564
+             */
565 565
         protected function setRequiredHeaders() {
566 566
             $requiredHeaders = array(
567 567
                                 'X-XSS-Protection' => '1; mode=block',
568 568
                                 'X-Frame-Options'  => 'SAMEORIGIN'
569 569
                             );
570 570
             foreach ($requiredHeaders as $key => $value) {
571
-               if (!isset($this->headers[$key])) {
571
+                if (!isset($this->headers[$key])) {
572 572
                     $this->headers[$key] = $value;
573
-               } 
573
+                } 
574 574
             }
575 575
         }
576 576
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -369,7 +369,7 @@
 block discarded – undo
369 369
          * 
370 370
          * @return string|null          the full file path
371 371
          */
372
-        protected function getDefaultFilePathForView($file){
372
+        protected function getDefaultFilePathForView($file) {
373 373
             $searchDir = array(APPS_VIEWS_PATH, CORE_VIEWS_PATH);
374 374
             $fullFilePath = null;
375 375
             foreach ($searchDir as $dir) {
Please login to merge, or discard this patch.