1 | <?php |
||
5 | abstract class Method |
||
6 | { |
||
7 | const LIST = 'LIST'; |
||
8 | const POST = 'POST'; |
||
9 | const GET = 'GET'; |
||
10 | const PUT = 'PUT'; |
||
11 | const DELETE = 'DELETE'; |
||
12 | |||
13 | /** |
||
14 | * @var \Dontdrinkandroot\RestBundle\Metadata\Annotation\Right |
||
15 | */ |
||
16 | public $right; |
||
17 | |||
18 | abstract public function getName(): string; |
||
19 | |||
20 | 18 | public static function create(string $name): Method |
|
36 | } |
||
37 |