Index   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
eloc 2
dl 0
loc 5
c 1
b 1
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 3 1
1
<?php
2
3
namespace Gvera\Controllers\v0;
4
5
use Gvera\Controllers\GvController;
6
use Gvera\Helpers\http\Response;
7
8
class Index extends GvController
9
{
10
    public function index()
11
    {
12
        $this->httpResponse->response(new Response("2nd level index"));
13
    }
14
}
15