Completed
Push — SF4 ( 4a7883...4059c5 )
by Laurent
07:51
created

DefaultController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * DefaultController controller de l'application.
5
 *
6
 * PHP Version 7
7
 *
8
 * @author    Quétier Laurent <[email protected]>
9
 * @copyright 2018 Dev-Int GLSR
10
 * @license   http://opensource.org/licenses/gpl-license.php GNU Public License
11
 *
12
 * @version GIT: $Id$
13
 *
14
 * @link      https://github.com/Dev-Int/glsr
15
 */
16
17
namespace App\Controller;
18
19
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
20
use Symfony\Component\Routing\Annotation\Route;
21
22
/**
23
 * Description of DefaultController
24
 *
25
 * @category Controller
26
 */
27
class DefaultController extends Controller
28
{
29
    /**
30
     * @Route("/", name="home")
31
     */
32
    public function index()
33
    {
34
        return $this->render('default/index.html.twig');
35
    }
36
}
37