DefaultController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A home() 0 3 1
1
<?php
2
3
namespace App\Controller;
4
5
6
use Libellule\Controller\Controller;
7
8
class DefaultController extends Controller
9
{
10
11
    /**
12
     * Page d'Accueil
13
     */
14
    public function home()
15
    {
16
        return $this->render('bienvenue.html.twig');
17
    }
18
19
}
20