Passed
Push — master ( ed02e2...61bb93 )
by Anthony
02:16
created

AccountsController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

1 Method

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