| 1 | <?php |
||
| 9 | class Routed extends BaseController |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @Phprest\Route(method="GET", path="/foos/{id}", since=1.2, until=2.8) |
||
| 13 | */ |
||
| 14 | public static function getFoo() |
||
| 15 | { |
||
| 16 | return new Response\Ok('Hello World!'); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @Phprest\Route(method="POST", path="bars", since=0.5, until=0.7) |
||
| 21 | */ |
||
| 22 | public static function postBar() |
||
| 23 | { |
||
| 24 | return new Response\Created('sample location'); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |