TestUsesTagIssue   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 92
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 92
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A method() 0 4 1
1
<?php
2
3
namespace phpDocumentor\Descriptor;
4
5
/**
6
 * Class to check if uses tags are working correctly
7
 *
8
 * @uses TestUsesTagIssue
9
 * @uses TestUsesTagIssue class itself
10
 *
11
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue
12
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue class itself
13
 *
14
 * @uses TestUsesTagIssue::$property
15
 * @uses TestUsesTagIssue::$property own property
16
 *
17
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property
18
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property own property
19
 *
20
 * @uses TestUsesTagIssue::method()
21
 * @uses TestUsesTagIssue::method() own method
22
 *
23
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method()
24
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method() own method
25
 *
26
 * @uses TestUsesTagIssue::CONSTANT
27
 * @uses TestUsesTagIssue::CONSTANT own constant
28
 *
29
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT
30
 * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT own constant
31
 */
32
class TestUsesTagIssue
33
{
34
    /**
35
     * Constant to check if uses tags are working correctly
36
     *
37
     * @uses TestUsesTagIssue
38
     * @uses TestUsesTagIssue class itself
39
     *
40
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue
41
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue class itself
42
     *
43
     * @uses TestUsesTagIssue::$property
44
     * @uses TestUsesTagIssue::$property own property
45
     *
46
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property
47
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property own property
48
     *
49
     * @uses TestUsesTagIssue::method()
50
     * @uses TestUsesTagIssue::method() own method
51
     *
52
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method()
53
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method() own method
54
     *
55
     * @uses TestUsesTagIssue::CONSTANT
56
     * @uses TestUsesTagIssue::CONSTANT own constant
57
     *
58
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT
59
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT own constant
60
     */
61
    const CONSTANT = 1;
62
63
    /**
64
     * Property to check if uses tags are working correctly
65
     *
66
     * @uses TestUsesTagIssue
67
     * @uses TestUsesTagIssue class itself
68
     *
69
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue
70
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue class itself
71
     *
72
     * @uses TestUsesTagIssue::$property
73
     * @uses TestUsesTagIssue::$property own property
74
     *
75
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property
76
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property own property
77
     *
78
     * @uses TestUsesTagIssue::method()
79
     * @uses TestUsesTagIssue::method() own method
80
     *
81
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method()
82
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method() own method
83
     *
84
     * @uses TestUsesTagIssue::CONSTANT
85
     * @uses TestUsesTagIssue::CONSTANT own constant
86
     *
87
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT
88
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT own constant
89
     */
90
    public $property;
91
92
    /**
93
     * Method to check if uses tags are working correctly
94
     *
95
     * @uses TestUsesTagIssue
96
     * @uses TestUsesTagIssue class itself
97
     *
98
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue
99
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue class itself
100
     *
101
     * @uses TestUsesTagIssue::$property
102
     * @uses TestUsesTagIssue::$property own property
103
     *
104
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property
105
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::$property own property
106
     *
107
     * @uses TestUsesTagIssue::method()
108
     * @uses TestUsesTagIssue::method() own method
109
     *
110
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method()
111
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::method() own method
112
     *
113
     * @uses TestUsesTagIssue::CONSTANT
114
     * @uses TestUsesTagIssue::CONSTANT own constant
115
     *
116
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT
117
     * @uses \phpDocumentor\Descriptor\TestUsesTagIssue::CONSTANT own constant
118
     */
119
    public function method()
120
    {
121
        // body of method
122
    }
123
}
124