1 | <?php |
||
11 | abstract class RestResource |
||
12 | { |
||
13 | /** |
||
14 | * @param RequestMethod $method |
||
15 | * @return bool |
||
16 | */ |
||
17 | public function supports(RequestMethod $method): bool |
||
21 | |||
22 | /** |
||
23 | * @return RequestMethod[] |
||
24 | */ |
||
25 | public function getSupportedMethods(): array |
||
30 | |||
31 | /** |
||
32 | * @return array |
||
33 | */ |
||
34 | private function getMethodMap(): array |
||
44 | } |
||
45 |