Completed
Push — master ( 2a34d4...10baf1 )
by Adriel
08:49
created
App/Controllers/HomeController.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 class HomeController extends Controller
7 7
 {
8 8
 
9
-	public function index() {
9
+    public function index() {
10 10
 
11
-		$this->params['title'] = "Sephy Simple PHP Framework";
11
+        $this->params['title'] = "Sephy Simple PHP Framework";
12 12
 
13
-		return $this->view('home.index',$this->params);
14
-	}
13
+        return $this->view('home.index',$this->params);
14
+    }
15 15
 
16 16
 
17
-	public function subpage() {
17
+    public function subpage() {
18 18
 
19
-		$this->params['title'] = "Sephy Simple PHP Framework - Sub Page";
19
+        $this->params['title'] = "Sephy Simple PHP Framework - Sub Page";
20 20
 
21
-		return $this->view('home.subpage',$this->params);
22
-	}
21
+        return $this->view('home.subpage',$this->params);
22
+    }
23 23
 
24 24
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 		$this->params['title'] = "Sephy Simple PHP Framework";
12 12
 
13
-		return $this->view('home.index',$this->params);
13
+		return $this->view('home.index', $this->params);
14 14
 	}
15 15
 
16 16
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
 		$this->params['title'] = "Sephy Simple PHP Framework - Sub Page";
20 20
 
21
-		return $this->view('home.subpage',$this->params);
21
+		return $this->view('home.subpage', $this->params);
22 22
 	}
23 23
 
24 24
 }
Please login to merge, or discard this patch.
App/Views/layout/footer.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 </div>
2 2
 <div class="content">
3
-	&copy; <?php echo date('Y');?>  by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a>
3
+	&copy; <?php echo date('Y'); ?>  by <a href="http://adrielov.com.br" class="navbar-link" target="_blank">Adriel Oliveira</a>
4 4
 </div>
Please login to merge, or discard this patch.
public/index.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 }
7 7
 
8 8
 define("DS", "/");
9
-define("ROOT_DIR", dirname(realpath(dirname(__FILE__)) . DS));
10
-define("ROOT_APP", dirname(dirname(__FILE__)) . DS . 'App' . DS);
11
-define("ROOT_ASSETS", dirname(__FILE__) . DS . 'assets' . DS);
12
-define("ROOT_CORE", dirname(dirname(__FILE__)) . DS . 'Core' . DS);
13
-define("ROOT_CACHE", dirname(dirname(__FILE__)) . DS . 'Cache' . DS);
9
+define("ROOT_DIR", dirname(realpath(dirname(__FILE__)).DS));
10
+define("ROOT_APP", dirname(dirname(__FILE__)).DS.'App'.DS);
11
+define("ROOT_ASSETS", dirname(__FILE__).DS.'assets'.DS);
12
+define("ROOT_CORE", dirname(dirname(__FILE__)).DS.'Core'.DS);
13
+define("ROOT_CACHE", dirname(dirname(__FILE__)).DS.'Cache'.DS);
14 14
 
15 15
 if (file_exists($autoloader = '../vendor/autoload.php')) {
16 16
     require $autoloader;
Please login to merge, or discard this patch.