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

KitchenSinkController::indexAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
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