Failed Conditions
Push — metadata ( c6c11e...d7114b )
by Michael
02:19
created

ClassUsesTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 13
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Doctrine\Tests\Annotations\Fixtures;
4
5
use Doctrine\Tests\Annotations\Bar\Autoload;
6
7
class ClassUsesTrait {
8
    use TraitWithAnnotatedMethod;
9
10
    /**
11
     * @Autoload
12
     */
13
    public $aProperty;
14
15
    /**
16
     * @Autoload
17
     */
18
    public function someMethod()
19
    {
20
21
    }
22
}
23
24
25
namespace Doctrine\Tests\Annotations\Bar;
26
27
/** @Annotation */
28
class Autoload
29
{
30
}
31