1 | <?php |
||
13 | class Method |
||
14 | { |
||
15 | const LIST = 'LIST'; |
||
16 | const POST = 'POST'; |
||
17 | const GET = 'GET'; |
||
18 | const PUT = 'PUT'; |
||
19 | const DELETE = 'DELETE'; |
||
20 | 18 | ||
21 | /** |
||
22 | * @Required() |
||
23 | 18 | * @var string |
|
24 | 16 | */ |
|
25 | 4 | public $name; |
|
26 | |||
27 | 4 | /** |
|
28 | 4 | * @var \Dontdrinkandroot\RestBundle\Metadata\Annotation\Right |
|
29 | */ |
||
30 | public $right; |
||
31 | |||
32 | /** |
||
33 | * @var array<string> |
||
34 | */ |
||
35 | public $defaultIncludes; |
||
36 | } |
||
37 |