Passed
Push — master ( 4f415b...b6b0b7 )
by Gabriel
03:01
created

ViewController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
eloc 2
dl 0
loc 9
rs 10
c 1
b 0
f 1
ccs 1
cts 1
cp 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace Nip\Controllers;
4
5
use Nip\Controllers\Response\ResponsePayload;
6
use Nip\Controllers\Traits\HasViewTrait;
7
8
/**
9
 * Class ViewController
10
 * @package Nip\Controllers
11
 */
12
class ViewController extends Controller
13
{
14
    use HasViewTrait;
15
16
    /**
17
     * Controller constructor.
18
     */
19 1
    public function __construct()
20
    {
21
//        $this->inflectName();
22 1
    }
23
}
24