Passed
Push — master ( 580456...3c6fac )
by Anthony
01:53
created
Controller/DefaultController.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
 
8 8
 class DefaultController extends Controller
9 9
 {
10
-    /**
11
-     * @Route("/index", name="ribsadmin_index")
12
-     */
13
-    public function indexAction()
14
-    {
15
-        return $this->render('RibsAdminBundle:Default:index.html.twig');
16
-    }
10
+				/**
11
+				 * @Route("/index", name="ribsadmin_index")
12
+				 */
13
+				public function indexAction()
14
+				{
15
+								return $this->render('RibsAdminBundle:Default:index.html.twig');
16
+				}
17 17
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,13 +5,11 @@
 block discarded – undo
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6 6
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
7 7
 
8
-class DefaultController extends Controller
9
-{
8
+class DefaultController extends Controller {
10 9
     /**
11 10
      * @Route("/index", name="ribsadmin_index")
12 11
      */
13
-    public function indexAction()
14
-    {
12
+    public function indexAction() {
15 13
         return $this->render('RibsAdminBundle:Default:index.html.twig');
16 14
     }
17 15
 }
Please login to merge, or discard this patch.