Completed
Push — master ( 180bf5...4d61e9 )
by Luc
14s
created

UserViewController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace VSV\GVQ_API\User\Controllers;
4
5
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
6
use Symfony\Component\HttpFoundation\Response;
7
8
class UserViewController extends AbstractController
9
{
10
    /**
11
     * @return Response
12
     */
13
    public function index(): Response
14
    {
15
        return $this->render(
16
            'users/index.html.twig'
17
        );
18
    }
19
}
20