Passed
Pull Request — master (#126)
by David
05:59
created

TestUserDaoTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A findNothing() 0 2 1
1
<?php
2
3
4
namespace TheCodingMachine\TDBM\Fixtures\Traits;
5
6
trait TestUserDaoTrait
7
{
8
    public function findNothing(): void
9
    {
10
    }
11
}
12