Completed
Pull Request — development (#795)
by Nick
04:52
created

IndexController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Oc\Controller;
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("/")
13
     */
14
    public function index(): Response
15
    {
16
        return $this->render('index/index.html.twig');
17
    }
18
}
19