Completed
Pull Request — development (#479)
by Mirco
06:41
created

KitchenSinkController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 6 1
1
<?php
2
3
namespace AppBundle\Controller;
4
5
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
8
class KitchenSinkController extends Controller
9
{
10
    /**
11
     * @Route("/kitchensink")
12
     * @return \Symfony\Component\HttpFoundation\Response
13
     */
14
    public function indexAction()
15
    {
16
        return $this->render('AppBundle:KitchenSinkController:index.html.twig', [
17
            // ...
18
        ]);
19
    }
20
21
}
22