Test Failed
Push — 1.0.0-dev ( a699fd...5dec5d )
by nguereza
02:36
created
core/classes/database/DatabaseCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         public function getCacheContent() {
155 155
             //set some attributes values
156 156
             $this->setPropertiesValues();
157
-            if(! $this->isSqlSELECTQuery || ! $this->dbCacheStatus){
157
+            if (!$this->isSqlSELECTQuery || !$this->dbCacheStatus) {
158 158
                 $this->logger->info('The cache is not enabled for this query or is not a SELECT query'); 
159 159
                 return null;
160 160
             }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
         public function saveCacheContent($result) {
182 182
             //set some attributes values
183 183
             $this->setPropertiesValues();
184
-            if(! $this->isSqlSELECTQuery || ! $this->dbCacheStatus){
184
+            if (!$this->isSqlSELECTQuery || !$this->dbCacheStatus) {
185 185
                 //just return true
186 186
                 return true;
187 187
             }
Please login to merge, or discard this patch.
core/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         static $cfg;
149 149
         if (empty($cfg)) {
150 150
             $cfg[0] = & load_configurations();
151
-            if(! is_array($cfg[0])){
151
+            if (!is_array($cfg[0])) {
152 152
                 $cfg[0] = array();
153 153
             }
154 154
         }
Please login to merge, or discard this patch.
core/classes/DBSessionHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -343,7 +343,7 @@
 block discarded – undo
343 343
          * Get some parameters data need like ip address, hostname, browser info, etc.
344 344
          * @return array
345 345
          */
346
-        protected function getSessionDataParams(){
346
+        protected function getSessionDataParams() {
347 347
             $this->getLoader()->functions('user_agent'); 
348 348
             $this->getLoader()->library('Browser'); 
349 349
             
Please login to merge, or discard this patch.
core/classes/EventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
             }
175 175
             //only test for original event may be during the flow some listeners change this parameter
176 176
             if ($eBackup->returnBack) {
177
-                if(! $error) {
177
+                if (!$error) {
178 178
                     return $event;
179 179
                 }
180 180
                 return null;
Please login to merge, or discard this patch.
core/libraries/Browser.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
          */
298 298
 		protected function checkPlatform() { 
299 299
 			foreach ($this->_platforms as $regex => $value) { 
300
-				if (preg_match($regex, $this->_agent) ) {
300
+				if (preg_match($regex, $this->_agent)) {
301 301
 					$this->setPlatform($value);
302 302
 					break;
303 303
 				}
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
          */
310 310
 		protected function checkBrowser() {
311 311
 			foreach ($this->_browsers as $regex => $value) { 
312
-				if (preg_match($regex, $this->_agent ) ) {
312
+				if (preg_match($regex, $this->_agent)) {
313 313
 					$this->setBrowser($value);
314 314
 					break;
315 315
 				}
@@ -319,10 +319,10 @@  discard block
 block discarded – undo
319 319
 		/**
320 320
          * Routine to determine the browser version
321 321
          */
322
-		protected function checkBrowserVersion(){
322
+		protected function checkBrowserVersion() {
323 323
 			$detected = $this->getBrowser();
324 324
 			$d = array_search($detected, $this->_browsers);
325
-			$browser = str_replace(array("/i","/"), "", $d);
325
+			$browser = str_replace(array("/i", "/"), "", $d);
326 326
 			$regex = "/(?<browser>version|{$browser})[\/]+(?<version>[0-9.|a-zA-Z.]*)/i";
327 327
 			if (preg_match_all($regex, $this->_agent, $matches)) {
328 328
 				$found = array_search($browser, $matches["browser"]);
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
          * Determine if the browser is Mobile or not
335 335
          */
336 336
 		protected function checkMobile() {
337
-			if (preg_match('/mobile|phone|ipod/i', $this->_agent) ) {
337
+			if (preg_match('/mobile|phone|ipod/i', $this->_agent)) {
338 338
 				$this->setMobile(true);
339 339
 			}
340 340
 		}
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
          * Determine if the browser is Tablet or not
344 344
          */
345 345
 		protected function checkTablet() {
346
-			if (preg_match('/tablet|ipad/i', $this->_agent) ) {
346
+			if (preg_match('/tablet|ipad/i', $this->_agent)) {
347 347
 				$this->setTablet(true);
348 348
 			}
349 349
 		}
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
          * Determine if the browser is Robot or not
353 353
          */
354 354
 		protected function checkBot() {
355
-			if (preg_match('/bot/i', $this->_agent) ) {
355
+			if (preg_match('/bot/i', $this->_agent)) {
356 356
 				$this->setTablet(true);
357 357
 			}
358 358
 		}
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
             if (stristr($this->_agent, 'FacebookExternalHit')) {
365 365
                 $this->setRobot(true);
366 366
                 $this->setFacebook(true);
367
-            }  else if (stristr($this->_agent, 'FBIOS')) {
367
+            } else if (stristr($this->_agent, 'FBIOS')) {
368 368
                 $this->setFacebook(true);
369 369
             }
370 370
         }
Please login to merge, or discard this patch.
core/classes/database/DatabaseQueryBuilder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
             $_keys = array();
421 421
             foreach ($keys as $k => $v) {
422 422
                 $v = $this->checkForNullValue($v);
423
-                if (! is_numeric($v)) {
423
+                if (!is_numeric($v)) {
424 424
                     $v = $this->escape($v, $escape);
425 425
                 }
426 426
                 $_keys[] = $v;
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
          * 
711 711
          * @return string|null
712 712
          */
713
-         protected function buildQueryPart($property, $command = ''){
713
+         protected function buildQueryPart($property, $command = '') {
714 714
             if (!empty($this->{$property})) {
715 715
                 return $command . ' ' . $this->{$property};
716 716
             }
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
          * @param string $clause the clause type "IS NULL", "IS NOT NULLs"
797 797
          * @return object        the current DatabaseQueryBuilder instance
798 798
          */
799
-        protected function whereIsNullAndNotNull($field, $andOr = 'AND', $clause = 'IS NULL'){
799
+        protected function whereIsNullAndNotNull($field, $andOr = 'AND', $clause = 'IS NULL') {
800 800
             if (is_array($field)) {
801 801
                 foreach ($field as $f) {
802 802
                     $this->whereIsNullAndNotNull($f, $andOr, $clause);
@@ -814,7 +814,7 @@  discard block
 block discarded – undo
814 814
          *
815 815
          * @return object the current instance
816 816
          */
817
-        protected function setSelectStr($newSelect){
817
+        protected function setSelectStr($newSelect) {
818 818
             $this->select = (($this->select == '*' || empty($this->select)) 
819 819
                                     ? $newSelect 
820 820
                                     : $this->select . ', ' . $newSelect);
@@ -828,8 +828,8 @@  discard block
 block discarded – undo
828 828
          * @return string        the empty string if the value is null
829 829
          * otherwise the same value will be returned
830 830
          */
831
-        protected function checkForNullValue($value){
832
-            if(is_null($value)){
831
+        protected function checkForNullValue($value) {
832
+            if (is_null($value)) {
833 833
                 return '';
834 834
             }
835 835
             return $value;
Please login to merge, or discard this patch.
core/classes/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
          * Remove the DOCUMENT_ROOT and front controller from segments if exists
409 409
          * @return void
410 410
          */
411
-        protected function removeDocumentRootFrontControllerFromSegments(){
411
+        protected function removeDocumentRootFrontControllerFromSegments() {
412 412
             $segment = $this->segments;
413 413
             $baseUrl = get_config('base_url');
414 414
             //check if the app is not in DOCUMENT_ROOT
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
                     break;
476 476
                 }
477 477
             }
478
-            if($findIndex !== -1){
478
+            if ($findIndex !== -1) {
479 479
                 array_shift($args);
480 480
                 //check if this contains an module
481 481
                 $moduleControllerMethod = explode('#', $this->callback[$findIndex]);
Please login to merge, or discard this patch.
core/classes/Loader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
          * @param  string $appLang the application language, only if type = "language"
313 313
          * @return string|null          the full file path
314 314
          */
315
-        protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null){
315
+        protected static function getDefaultFilePathForFunctionLanguage($file, $type, $appLang = null) {
316 316
             $searchDir = null;
317 317
             if ($type == 'function') {
318 318
                $searchDir = array(FUNCTIONS_PATH, CORE_FUNCTIONS_PATH);
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
          * @param  string|null $module the module if is not null will return it
339 339
          * @return string|null
340 340
          */
341
-        protected static function getModuleFromSuperController($module){
341
+        protected static function getModuleFromSuperController($module) {
342 342
             $obj = & get_instance();
343 343
             if (!$module && !empty($obj->moduleName)) {
344 344
                 $module = $obj->moduleName;
Please login to merge, or discard this patch.
core/libraries/Upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
          * Set the file array data generally in constructor this is already set using $_FILES
278 278
          * @param array $fileArray the new value
279 279
          */
280
-        public function setFileArray($fileArray){
280
+        public function setFileArray($fileArray) {
281 281
             $this->file_array = $fileArray;
282 282
         }
283 283
 
Please login to merge, or discard this patch.