Completed
Pull Request — development (#673)
by Nick
12:54 queued 04:44
created

KitchenSinkController::indexAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace OcDev\KitchenSink\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('kitchensink/index.html.twig');
17
    }
18
}
19