Completed
Pull Request — master (#72)
by David
01:57
created

ClassWithInvalidTypeAnnotation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testMethod() 0 2 1
1
<?php
2
3
4
namespace TheCodingMachine\GraphQL\Controllers\Fixtures\Annotations;
5
6
/**
7
 * No namespace here
8
 *
9
 * @Type()
10
 */
11
class ClassWithInvalidTypeAnnotation
12
{
13
    /**
14
     * @Field
15
     */
16
    public function testMethod()
17
    {
18
19
    }
20
}
21