| 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 | |||
| 21 | /** |
||
| 22 | * @Required() |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | public $name; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var \Dontdrinkandroot\RestBundle\Metadata\Annotation\Right |
||
| 29 | */ |
||
| 30 | public $right; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var array<string> |
||
| 34 | */ |
||
| 35 | public $defaultIncludes; |
||
| 36 | |||
| 37 | 48 | public static function parse($name, $config): ?Method |
|
| 53 | } |
||
| 54 |