1 | <?php namespace Limoncello\Application\Http; |
||
25 | class RequestStorage implements RequestStorageInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var ServerRequestInterface|null |
||
29 | */ |
||
30 | private $request = null; |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function get(): ServerRequestInterface |
||
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | public function set(ServerRequestInterface $request): RequestStorageInterface |
||
49 | |||
50 | /** |
||
51 | * @inheritdoc |
||
52 | */ |
||
53 | public function has(): bool |
||
57 | } |
||
58 |