Passed
Push — master ( 13c68b...f8775d )
by Nícollas
01:46
created

WebController::about()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 7
rs 10
1
<?php
2
3
namespace App\Controllers;
4
5
use MinasRouter\Http\Request;
6
7
class WebController
8
{
9
    public function about(Request $request)
10
    {
11
        echo 'About page... Some data of the request:';
12
        echo '<pre style="background-color: #212121; color: orange; padding: 10px;">';
13
        print_r($request);
14
        echo '</pre>';
15
        echo 'Be happy! :)';
16
    }
17
}
18