1 | <?php |
||
19 | abstract class AbstractProjectionRequest extends AbstractApiRequest |
||
20 | { |
||
21 | use StagedTrait; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | abstract protected function getProjectionAction(); |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | * @internal |
||
31 | */ |
||
32 | 10 | protected function getPath() |
|
36 | |||
37 | /** |
||
38 | * @return HttpRequest |
||
39 | * @internal |
||
40 | */ |
||
41 | 10 | public function httpRequest() |
|
45 | } |
||
46 |