Passed
Push — master ( 8656ae...f838a9 )
by refat
03:20
created
App/Controllers/Website/ImprintController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class ImprintController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('website/pages/imprint', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('website/pages/imprint', $context);
15
+	}
16 16
 }
Please login to merge, or discard this patch.
App/Controllers/Admin/HomeController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class HomeController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('admin/pages/home', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('admin/pages/home', $context);
15
+	}
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/ProfileController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class ProfileController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('admin/pages/profile', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('admin/pages/profile', $context);
15
+	}
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/SettingsController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class SettingsController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('admin/pages/settings', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('admin/pages/settings', $context);
15
+	}
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/LoginController.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,16 +6,16 @@
 block discarded – undo
6 6
 
7 7
 class LoginController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('admin/pages/login', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('admin/pages/login', $context);
15
+	}
16 16
 
17
-  public function submit()
18
-  {
17
+	public function submit()
18
+	{
19 19
 
20
-  }
20
+	}
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/Admin/LogoutController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 class LogoutController extends Controller
8 8
 {
9
-  public function index()
10
-  {
9
+	public function index()
10
+	{
11 11
 
12
-  }
12
+	}
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
App/Controllers/NotfoundController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class NotfoundController extends Controller
8 8
 {
9
-  public function index()
10
-  {
11
-    $context = [
9
+	public function index()
10
+	{
11
+		$context = [
12 12
 
13
-    ];
14
-    return $this->PugView->render('notfound', $context);
15
-  }
13
+		];
14
+		return $this->PugView->render('notfound', $context);
15
+	}
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
App/Middleware/MiddlewaresInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 interface MiddlewaresInterface
8 8
 {
9
-  public function handle(Application $app, $nex);
9
+	public function handle(Application $app, $nex);
10 10
 }
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
App/Middleware/Admin/PermissionsMiddleware.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 
8 8
 class PermissionsMiddleware implements Middleware
9 9
 {
10
-  public function handle(Application $app, $next)
11
-  {
10
+	public function handle(Application $app, $next)
11
+	{
12 12
 
13
-  }
13
+	}
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.