Passed
Push — master ( b4cb9f...51bac7 )
by Anthony
02:22
created

DefaultController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 3 1
1
<?php
2
3
namespace PiouPiou\RibsAdminBundle\Controller;
4
5
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
6
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
7
8
class DefaultController extends Controller
9
{
10
	/**
11
	 * @Route("/index", name="ribsadmin_index")
12
	 * @Route("/navigation", name="ribsadmin_navigation")
13
	 */
14
	public function indexAction()
15
	{
16
		return $this->render('@RibsAdmin/Default/index.html.twig');
17
	}
18
}
19