Completed
Push — master ( 80c358...ebe41b )
by Nazar
04:41
created
core/traits/App/Router/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 				return true;
109 109
 			}
110 110
 		);
111
-		$methods   = _strtoupper(_substr($methods, strlen($method_name) + 1));
111
+		$methods = _strtoupper(_substr($methods, strlen($method_name) + 1));
112 112
 		natcasesort($methods);
113 113
 		return array_values($methods);
114 114
 	}
Please login to merge, or discard this patch.
core/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,10 +55,10 @@
 block discarded – undo
55 55
 		 * Try to load classes from different places. If not found in one place - try in another.
56 56
 		 */
57 57
 		if (
58
-			file_exists($file = CORE."/classes/$namespace/$class_name.php") ||    //Core classes
58
+			file_exists($file = CORE."/classes/$namespace/$class_name.php") || //Core classes
59 59
 			file_exists($file = CORE."/thirdparty/$namespace/$class_name.php") || //Third party classes
60
-			file_exists($file = CORE."/traits/$namespace/$class_name.php") ||     //Core traits
61
-			file_exists($file = CORE."/engines/$namespace/$class_name.php") ||    //Core engines
60
+			file_exists($file = CORE."/traits/$namespace/$class_name.php") || //Core traits
61
+			file_exists($file = CORE."/engines/$namespace/$class_name.php") || //Core engines
62 62
 			file_exists($file = MODULES."/../$namespace/$class_name.php")         //Classes in modules
63 63
 		) {
64 64
 			$cache[$class] = realpath($file);
Please login to merge, or discard this patch.
modules/Http_server/cli/Controller.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
   php build.php -M core -m Plupload,Static_pages
76 76
   php build.php -M core -p TinyMCE -t DarkEnergy -s custom
77 77
   php build.php -M module -m Plupload,Static_pages
78
-HELP;
78
+help;
79 79
 	} elseif ($mode == 'core') {
80 80
 		echo $Builder->core($modules, $plugins, $themes, $suffix)."\n";
81 81
 	} else {
Please login to merge, or discard this patch.