Completed
Push — master ( dd5c07...b4647f )
by Wanderson
02:12
created
lib/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Autoload Model
5 5
  */
6
-spl_autoload_register(function ($className) {
6
+spl_autoload_register(function($className) {
7 7
 	$controllerFile = BASE_PATH . '/app/model/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
8 8
 	if (file_exists($controllerFile)):
9 9
 		return require $controllerFile;
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 /**
14 14
  * Autoload Controller
15 15
  */
16
-spl_autoload_register(function ($className) {
16
+spl_autoload_register(function($className) {
17 17
 	$modelFile = BASE_PATH . '/app/' . str_replace('\\', DIRECTORY_SEPARATOR, $className) . '.php';
18 18
 	if (file_exists($modelFile)):
19 19
 		return require $modelFile;
Please login to merge, or discard this patch.
app/model/Win/Mvc/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 		$this->app->view->validate();
93 93
 	}
94 94
 	
95
-	public function reload(){
95
+	public function reload() {
96 96
 		$this->init();
97 97
 		$this->index();
98 98
 	}
Please login to merge, or discard this patch.
app/model/Win/Authentication/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@
 block discarded – undo
280 280
 	/** @return boolean retorna TRUE se está bloqueado por tentativas de login */
281 281
 	public function isLocked() {
282 282
 		$diff = Date::diffSeconds($this->getLoginUnlockDate(), new Date);
283
-		return (boolean) ($diff <= 0 );
283
+		return (boolean) ($diff <= 0);
284 284
 	}
285 285
 
286 286
 	/** @return int total de tentativas restantes até ser bloqueado */
Please login to merge, or discard this patch.