Failed Conditions
Push — travis-php7.4 ( 6887c5 )
by Michael
13:05
created

ClassOverwritesTrait::traitMethod()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Doctrine\Tests\Annotations\Fixtures;
4
5
use Doctrine\Tests\Annotations\Bar2\Autoload;
6
7
class ClassOverwritesTrait {
8
    use TraitWithAnnotatedMethod;
9
10
    /**
11
     * @Autoload
12
     */
13
    public function traitMethod()
14
    {
15
16
    }
17
}
18
19
20
namespace Doctrine\Tests\Annotations\Bar2;
21
22
/** @Annotation */
23
class Autoload
24
{
25
}
26