Test Failed
Push — master ( a6b51e...5fffdb )
by Gabriel
08:05
created

LoggedInControllerTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
ccs 0
cts 2
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A index() 0 3 1
1
<?php
2
3
namespace ByTIC\Hello\Modules\Frontend\Controllers\Traits;
4
5
use ByTIC\Hello\Modules\AbstractModule\Controllers\Traits\HasAuthenticationVariablesTrait;
6
7
/**
8
 * Trait LoggedInControllerTrait
9
 * @package ByTIC\Hello\Modules\Frontend\Controllers\Traits
10
 */
11
trait LoggedInControllerTrait
12
{
13
    use HasAuthenticationVariablesTrait;
14
15
    public function index()
16
    {
17
    }
18
}
19