Passed
Push — master ( 20adb5...15e0f1 )
by Yohann
07:24 queued 05:57
created

SiteController::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
use mvc\core\abc\Controller;
4
5
class SiteController extends Controller
6
{
7
    public function index(): string
8
    {
9
        return $this->render('index');
10
    }
11
12
    public function about(): string
13
    {
14
        return $this->render('about');
15
    }
16
}
17