Passed
Push — master ( 003b31...53bc6b )
by Anthony
01:51
created

AccessRightsController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
dl 0
loc 7
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A listAction() 0 2 1
1
<?php
2
3
namespace Ribs\RibsAdminBundle\Controller;
4
5
6
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
use Symfony\Component\HttpFoundation\Response;
8
9
class AccessRightsController extends Controller
10
{
11
	/**
12
	 * @return Response
13
	 */
14
	public function listAction(): Response {
15
		return $this->render("@RibsAdmin/access-rights/list-all-list.html.twig");
16
	}
17
}