Completed
Pull Request — development (#798)
by Nick
04:43
created

IndexController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

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