Passed
Push — master ( 65941d...6aaf74 )
by Anthony
02:03
created
Controller/DefaultController.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,15 +5,13 @@
 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
 	 * @Route("/contents", name="ribsadmin_contents")
13 12
 	 * @Route("/navigation", name="ribsadmin_navigation")
14 13
 	 */
15
-	public function indexAction()
16
-	{
14
+	public function indexAction() {
17 15
 		return $this->render('RibsAdminBundle:Default:index.html.twig');
18 16
 	}
19 17
 }
Please login to merge, or discard this patch.
Controller/AccessRightsController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 use Symfony\Component\HttpFoundation\Response;
7 7
 use Symfony\Component\Routing\Annotation\Route;
8 8
 
9
-class AccessRightsController extends Controller
10
-{
9
+class AccessRightsController extends Controller {
11 10
 	/**
12 11
 	 * @Route("/access-rights-management", name="ribsadmin_access_rights")
13 12
 	 * @return Response
Please login to merge, or discard this patch.