1 | <?php |
||
9 | class RequestStackAdapter implements Adapter |
||
10 | { |
||
11 | /** |
||
12 | * @var RequestStack |
||
13 | */ |
||
14 | private $requestStack; |
||
15 | |||
16 | /** |
||
17 | * @param RequestStack $requestStack |
||
18 | */ |
||
19 | public function __construct(RequestStack $requestStack) |
||
23 | |||
24 | /** |
||
25 | * @return null|string |
||
26 | */ |
||
27 | public function getRequestBody(): ?string |
||
36 | } |
||
37 |