Passed
Branch tests1.5 (1e45fa)
by Wanderson
01:17
created
dev/tests/www/app/controller/DemoController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
 	}
33 33
 
34 34
 
35
-	public function tryRedirect(){
35
+	public function tryRedirect() {
36 36
 		$this->redirect('exemplo');
37 37
 	}
38 38
 
39
-	public function tryRefresh(){
39
+	public function tryRefresh() {
40 40
 		$this->refresh();
41 41
 	}
42 42
 }
Please login to merge, or discard this patch.
dev/tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-define('BASE_PATH', __DIR__.'/www');
3
+define('BASE_PATH', __DIR__ . '/www');
4 4
 include BASE_PATH . '/autoload.php';
5 5
 include BASE_PATH . '/../../../www/lib/functions/strings.php';
6 6
 
Please login to merge, or discard this patch.
www/app/model/Win/Mvc/View.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 	 * @param string $file
84 84
 	 */
85 85
 	private function setFile($file) {
86
-		$filePath = static::$dir .DIRECTORY_SEPARATOR. $file;
86
+		$filePath = static::$dir . DIRECTORY_SEPARATOR . $file;
87 87
 
88 88
 		if (!is_null(Template::instance()->getTheme())):
89 89
 			$filePath = Template::instance()->getFilePath($file);
Please login to merge, or discard this patch.