1 | <?php |
||
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 |