Completed
Push — master ( fbc723...64233b )
by Martijn
02:13
created

testParse_SeeClassMethod_Other::Method()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace Test\Parser\Php\ParserTest;
4
5
/**
6
 * Demonstrates a very simple but complete API
7
 * @rest\api MyApi Example
8
 */
9
class testParse_SeeClassMethod
10
{
11
12
	/**
13
	 * @rest\endpoint /endpoint
14
	 * @rest\method GET Something
15
	 * @rest\see testParse_SeeClassMethod_Other::Method
16
	 */
17
	public function Dummy()
18
	{
19
		
20
	}
21
22
}
23
24
class testParse_SeeClassMethod_Other
25
{
26
27
	/**
28
	 * @rest\error 400
29
	 */
30
	private function Method()
31
	{
32
33
	}
34
35
}
36