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

testParse_SeeFunction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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