Completed
Push — development ( 9736ae...1c21f9 )
by Mirco
24s queued 10s
created

IndexController::indexAction()   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\Index\Controller;
4
5
use Oc\AbstractController;
6
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
7
use Symfony\Component\HttpFoundation\Response;
8
9
/**
10
 * @Route(service="Oc\Index\Controller\IndexController")
11
 */
12
class IndexController extends AbstractController
13
{
14
    /**
15
     * @Route(path="", name="index.index")
16
     */
17
    public function indexAction(): Response
18
    {
19
        return new Response('test');
20
    }
21
}
22