Completed
Push — master ( 57e7bf...14d857 )
by dima
02:20
created
app/Controllers/IndexController.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -8,25 +8,25 @@
 block discarded – undo
8 8
 class IndexController extends BaseController {
9 9
 
10 10
 
11
-	/**
12
-	 * Return index page (/)
13
-	 *
14
-	 * @param array $args
15
-	 * @return Response
16
-	 */
17
-	public function get($args) {
11
+    /**
12
+     * Return index page (/)
13
+     *
14
+     * @param array $args
15
+     * @return Response
16
+     */
17
+    public function get($args) {
18 18
 		
19
-		$result = \App::getModule(UserList::class,[
20
-					"limit" => 2
21
-				]);
19
+        $result = \App::getModule(UserList::class,[
20
+                    "limit" => 2
21
+                ]);
22 22
 		
23
-		$result .= \App::getModule(UserList::class,[
24
-					"limit" => 1
25
-				]);
23
+        $result .= \App::getModule(UserList::class,[
24
+                    "limit" => 1
25
+                ]);
26 26
 		
27
-		return $this->render('pages/index.html.twig', [
28
-				"content" => $result,
29
-		]);
30
-	}
27
+        return $this->render('pages/index.html.twig', [
28
+                "content" => $result,
29
+        ]);
30
+    }
31 31
 
32 32
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
 	 */
17 17
 	public function get($args) {
18 18
 		
19
-		$result = \App::getModule(UserList::class,[
19
+		$result = \App::getModule(UserList::class, [
20 20
 					"limit" => 2
21 21
 				]);
22 22
 		
23
-		$result .= \App::getModule(UserList::class,[
23
+		$result .= \App::getModule(UserList::class, [
24 24
 					"limit" => 1
25 25
 				]);
26 26
 		
Please login to merge, or discard this patch.