Completed
Push — master ( 621a38...6bd0cd )
by David
14s queued 11s
created

ClassWithInvalidClassAnnotation::testMethod()   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
4
namespace TheCodingMachine\GraphQL\Controllers\Fixtures\Annotations;
5
6
/**
7
 * No namespace here
8
 *
9
 * @foo()
10
 */
11
class ClassWithInvalidClassAnnotation
12
{
13
    /**
14
     * @foo
15
     */
16
    public function testMethod()
17
    {
18
19
    }
20
}
21