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

AccountsController::AccountsListAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
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
}