ClassWithAnnotationWithTargetSyntaxError::bar()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 1
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\Fixtures\AnnotationWithTargetSyntaxError;
6
7
/**
8
 * @AnnotationWithTargetSyntaxError()
9
 */
10
class ClassWithAnnotationWithTargetSyntaxError
11
{
12
    /**
13
     * @AnnotationWithTargetSyntaxError()
14
     */
15
    public $foo;
16
17
    /**
18
     * @AnnotationWithTargetSyntaxError()
19
     */
20
    public function bar(){}
21
}
22