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

testParse_CurlyBraces   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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