Completed
Push — master ( 58c980...3e9401 )
by David
13s queued 11s
created

TestOtherUserTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A method1() 0 3 1
1
<?php
2
3
4
namespace TheCodingMachine\TDBM\Fixtures\Traits;
5
6
7
trait TestOtherUserTrait
8
{
9
    public function method1(): string
10
    {
11
        return 'TestOtherUserTrait';
12
    }
13
}
14