Passed
Push — 1.0.0-dev ( 3e5cd9...a1ce08 )
by nguereza
03:39
created
core/libraries/FormValidation.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -355,13 +355,13 @@  discard block
 block discarded – undo
355 355
         public function setMessage() {
356 356
             $numArgs = func_num_args();
357 357
             if ($numArgs == 2) {
358
-               foreach ($this->post(null) as $key => $val) {
358
+                foreach ($this->post(null) as $key => $val) {
359 359
                     $this->_errorMsgOverrides[$key][func_get_arg(0)] = func_get_arg(1);
360 360
                 }
361 361
                 return true;
362 362
             } else if ($numArgs == 3) {
363 363
                 $this->_errorMsgOverrides[func_get_arg(1)][func_get_arg(0)] = func_get_arg(2);
364
-                 return true;
364
+                    return true;
365 365
             }
366 366
             return false;
367 367
         }
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
                 if (!empty($regexRule[0])) {
469 469
                     $ruleSets[] = $regexRule[0];
470 470
                 }
471
-                 $ruleStringRegex = explode('|', $ruleStringTemp);
471
+                    $ruleStringRegex = explode('|', $ruleStringTemp);
472 472
                 foreach ($ruleStringRegex as $rule) {
473 473
                     $rule = trim($rule);
474 474
                     if ($rule) {
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.
core/classes/BaseStaticClass.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
                 self::$logger = $logger[0];
45 45
             }
46 46
             if ($setLoggerName) {
47
-               self::$logger->setLogger('Class::' . get_called_class());
47
+                self::$logger->setLogger('Class::' . get_called_class());
48 48
             }
49 49
             return self::$logger;			
50 50
         }
Please login to merge, or discard this patch.
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.
core/libraries/Email.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
             }
283 283
             $filename = $this->encodeUtf8($this->filterOther((string) $filename));
284 284
             if (empty($data)) {
285
-               $data = $this->getAttachmentData($path);
285
+                $data = $this->getAttachmentData($path);
286 286
             }
287 287
             $this->_attachments[] = array(
288 288
                 'path' => $path,
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
             $addresses = array();
347 347
             foreach ($pairs as $name => $email) {
348 348
                 if (is_numeric($name)) {
349
-                   $name = null;
349
+                    $name = null;
350 350
                 }
351 351
                 $addresses[] = $this->formatHeader($email, $name);
352 352
             }
Please login to merge, or discard this patch.
core/classes/Module.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
         public function add($name) {
67 67
             $logger = self::getLogger();
68 68
             if (in_array($name, self::$list)) {
69
-               $logger->info('The module [' .$name. '] already added skipping.');
70
-               return $this;
69
+                $logger->info('The module [' .$name. '] already added skipping.');
70
+                return $this;
71 71
             }
72 72
             self::$list[] = $name;
73 73
             return $this;
@@ -97,10 +97,10 @@  discard block
 block discarded – undo
97 97
             self::$list = array();
98 98
         }
99 99
 
100
-         /**
101
-         * Get the list of module loaded
102
-         * @return array the module list
103
-         */
100
+            /**
101
+             * Get the list of module loaded
102
+             * @return array the module list
103
+             */
104 104
         public static function getModuleList() {
105 105
             return self::$list;
106 106
         }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         public function add($name) {
67 67
             $logger = self::getLogger();
68 68
             if (in_array($name, self::$list)) {
69
-               $logger->info('The module [' .$name. '] already added skipping.');
69
+               $logger->info('The module [' . $name . '] already added skipping.');
70 70
                return $this;
71 71
             }
72 72
             self::$list[] = $name;
Please login to merge, or discard this patch.
app/config/autoload.php 1 patch
Indentation   +85 added lines, -85 removed lines patch added patch discarded remove patch
@@ -25,103 +25,103 @@
 block discarded – undo
25 25
      */
26 26
 
27 27
     /**
28
-	* This file contains the configuration of resources that you want to load automatically: 
29
-	* personals or systems libraries, configuration files, models, languages
30
-	* personals functions or systems that are used often in your application 
31
-	* instead of loading them every time you want to use it.
32
-	* Note: loading a lot of resources can decrease the performance of your application.
33
-	*/
28
+     * This file contains the configuration of resources that you want to load automatically: 
29
+     * personals or systems libraries, configuration files, models, languages
30
+     * personals functions or systems that are used often in your application 
31
+     * instead of loading them every time you want to use it.
32
+     * Note: loading a lot of resources can decrease the performance of your application.
33
+     */
34 34
 
35 35
 
36
-	/**
37
-	* If you have personals libraries or systems to load automatically, then list them in the following array.
38
-	* For example :
39
-	*
40
-	*	$autoload['libraries'] = array('library1', 'library2');
41
-	*
42
-	* Using module:
43
-	* 
44
-	*   $autoload['libraries'] = array('module1/library1', 'module2/library1');
45
-	*
46
-	* Note: Systems libraries have priority over personals libraries, 
47
-	* ie the loading order is as follows: it looks in the folder of the systems libraries, 
48
-	* if it is found, it is loaded, if not, it search in the module directories, if it is found, 
49
-	* it is loaded, if not will search in personals libraries folder, 
50
-	* before returning an error in case it does not find it.
51
-	*/
36
+    /**
37
+     * If you have personals libraries or systems to load automatically, then list them in the following array.
38
+     * For example :
39
+     *
40
+     *	$autoload['libraries'] = array('library1', 'library2');
41
+     *
42
+     * Using module:
43
+     * 
44
+     *   $autoload['libraries'] = array('module1/library1', 'module2/library1');
45
+     *
46
+     * Note: Systems libraries have priority over personals libraries, 
47
+     * ie the loading order is as follows: it looks in the folder of the systems libraries, 
48
+     * if it is found, it is loaded, if not, it search in the module directories, if it is found, 
49
+     * it is loaded, if not will search in personals libraries folder, 
50
+     * before returning an error in case it does not find it.
51
+     */
52 52
     $autoload['libraries'] = array();
53 53
 
54 54
     /**
55
-	* If you have configuration files to load automatically, then list them in the following array.
56
-	* For example :
57
-	*
58
-	*	$autoload['config'] = array('config1', 'config2');
59
-	*
60
-	* Using module:
61
-	* 
62
-	*   $autoload['config'] = array('module1/config1', 'module2/config2');
63
-	*
64
-	* Note 1: the file name must have as prefix "config_" for config file inside CONFIG_PATH folder
65
-	* for example "config_name_of_the_file_config.php" and contains as configuration variable the array $config,
66
-	* otherwise the system can not find this configuration file.
67
-	* For example :
68
-	*
69
-	*	$config['key1'] = value1;
70
-	* 	$config['key2'] = value2;
71
-	*
72
-	* Note 2: the files to be loaded must be in the folder defined by the constant "CONFIG_PATH" in "index.php".
73
-	* or inside the "config" of your application modules
74
-	*/
55
+     * If you have configuration files to load automatically, then list them in the following array.
56
+     * For example :
57
+     *
58
+     *	$autoload['config'] = array('config1', 'config2');
59
+     *
60
+     * Using module:
61
+     * 
62
+     *   $autoload['config'] = array('module1/config1', 'module2/config2');
63
+     *
64
+     * Note 1: the file name must have as prefix "config_" for config file inside CONFIG_PATH folder
65
+     * for example "config_name_of_the_file_config.php" and contains as configuration variable the array $config,
66
+     * otherwise the system can not find this configuration file.
67
+     * For example :
68
+     *
69
+     *	$config['key1'] = value1;
70
+     * 	$config['key2'] = value2;
71
+     *
72
+     * Note 2: the files to be loaded must be in the folder defined by the constant "CONFIG_PATH" in "index.php".
73
+     * or inside the "config" of your application modules
74
+     */
75 75
     $autoload['config'] = array();
76 76
 
77 77
     /**
78
-	* If you have models to load automatically, then list them in the following array.
79
-	* For example :
80
-	*
81
-	*	$autoload['models'] = array('model1', 'model2');
82
-	*
83
-	* Using module:
84
-	* 
85
-	*   $autoload['models'] = array('module1/model1', 'module2/model2');
86
-	*/
78
+     * If you have models to load automatically, then list them in the following array.
79
+     * For example :
80
+     *
81
+     *	$autoload['models'] = array('model1', 'model2');
82
+     *
83
+     * Using module:
84
+     * 
85
+     *   $autoload['models'] = array('module1/model1', 'module2/model2');
86
+     */
87 87
     $autoload['models'] = array();
88 88
 
89 89
     /**
90
-	* If you have systems or personals functions to load automatically, specify them in the following array.
91
-	* For example :
92
-	*
93
-	* 	$autoload['functions'] = array('function1', 'function2');
94
-	*
95
-	* Using module:
96
-	* 
97
-	*   $autoload['functions'] = array('module1/function1', 'module2/function2');
98
-	*
99
-	* Note 1: Personal functions have priority over system functions,
100
-	* that is to say that the order of loading is the following : it looks in the directory of the modules functions, 
101
-	* if it is found, it is loaded, otherwise, it looks in the directory of the personal functions,
102
-	* if it is found, it is loaded, otherwise, it looks in the directory of the system functions,
103
-	* before returning an error in case he does not find it.
104
-	*
105
-	* Note 2: the file name must have as prefix "function_" for example "function_foo.php" then
106
-	* will use:
107
-	* 
108
-	*  $autoload['functions'] = array('foo');
109
-	*/
90
+     * If you have systems or personals functions to load automatically, specify them in the following array.
91
+     * For example :
92
+     *
93
+     * 	$autoload['functions'] = array('function1', 'function2');
94
+     *
95
+     * Using module:
96
+     * 
97
+     *   $autoload['functions'] = array('module1/function1', 'module2/function2');
98
+     *
99
+     * Note 1: Personal functions have priority over system functions,
100
+     * that is to say that the order of loading is the following : it looks in the directory of the modules functions, 
101
+     * if it is found, it is loaded, otherwise, it looks in the directory of the personal functions,
102
+     * if it is found, it is loaded, otherwise, it looks in the directory of the system functions,
103
+     * before returning an error in case he does not find it.
104
+     *
105
+     * Note 2: the file name must have as prefix "function_" for example "function_foo.php" then
106
+     * will use:
107
+     * 
108
+     *  $autoload['functions'] = array('foo');
109
+     */
110 110
     $autoload['functions'] = array();
111 111
 	
112 112
     /**
113
-	* If you have systems or personals languages to load automatically, specify them in the following array.
114
-	* For example :
115
-	*
116
-	* 	$autoload['languages'] = array('lang1', 'lang2');
117
-	*
118
-	* Using module:
119
-	* 
120
-	*   $autoload['languages'] = array('module1/lang1', 'module2/lang2');
121
-	*
122
-	* Note: the file name must have as prefix "lang_" for example "lang_foo.php" then
123
-	* will use:
124
-	* 
125
-	*  $autoload['languages'] = array('foo');
126
-	*/
113
+     * If you have systems or personals languages to load automatically, specify them in the following array.
114
+     * For example :
115
+     *
116
+     * 	$autoload['languages'] = array('lang1', 'lang2');
117
+     *
118
+     * Using module:
119
+     * 
120
+     *   $autoload['languages'] = array('module1/lang1', 'module2/lang2');
121
+     *
122
+     * Note: the file name must have as prefix "lang_" for example "lang_foo.php" then
123
+     * will use:
124
+     * 
125
+     *  $autoload['languages'] = array('foo');
126
+     */
127 127
     $autoload['languages'] = array();
Please login to merge, or discard this patch.
app/views/home.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
             <p>Author : <b><?php echo TNH_AUTHOR; ?></b></p>
35 35
             <p>Author E-mail : <b><?php echo TNH_AUTHOR_EMAIL; ?></b></p>
36 36
             <hr />
37
-            <p>Current controller: <b class = "text-muted label-danger"><?php echo APPS_CONTROLLER_PATH . 'Home.php';?></b>
38
-            <p>Current view: <b class = "text-muted label-danger"><?php echo APPS_VIEWS_PATH . 'home.php';?></b>
37
+            <p>Current controller: <b class = "text-muted label-danger"><?php echo APPS_CONTROLLER_PATH . 'Home.php'; ?></b>
38
+            <p>Current view: <b class = "text-muted label-danger"><?php echo APPS_VIEWS_PATH . 'home.php'; ?></b>
39 39
           </div>
40 40
         </div>
41 41
       </div>
Please login to merge, or discard this patch.