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

IndexController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 4 1
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