1 | <?php |
||
4 | abstract class AbstractRequestMethod implements RequestMethod |
||
5 | { |
||
6 | /** |
||
7 | * @param AbstractRequestMethod $requestMethod |
||
8 | * @return bool |
||
9 | */ |
||
10 | public function equals(AbstractRequestMethod $requestMethod): bool |
||
14 | |||
15 | /** |
||
16 | * @return bool |
||
17 | */ |
||
18 | public function isReadMethod(): bool |
||
22 | |||
23 | /** |
||
24 | * @return bool |
||
25 | */ |
||
26 | public function isOptionsMethod(): bool |
||
30 | |||
31 | |||
32 | } |
||
33 |