ClassWithAnnotationWithTargetSyntaxError   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A bar() 0 1 1
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