Completed
Branch master (0c108a)
by Wanderson
01:56
created
Category
app/model/Win/Mvc/ControllerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 		$class = static::getControllerClass($page);
22 22
 		if (class_exists($class)) {
23 23
 			return new $class($action);
24
-		} elseif (Route::instance()->hasCustomUrl() xor ! is_null($action)) {
24
+		} elseif (Route::instance()->hasCustomUrl() xor !is_null($action)) {
25 25
 			return Route::instance()->createController();
26 26
 		}
27 27
 		return new DefaultController();
Please login to merge, or discard this patch.
app/model/Win/Helper/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * Quando uma View ou Block é chamado, primeiro o arquivo será buscando em "template/[nome-do-template]"
13 13
  * E caso o arquivo não exista, será buscado em "template/default"
14 14
  */
15
-class Template extends Singleton{
15
+class Template extends Singleton {
16 16
 
17 17
 	protected static $dir = 'app/template/';
18 18
 	protected static $themeDefault = 'default';
Please login to merge, or discard this patch.