| 1 | <?php declare(strict_types=1); |
||
| 26 | class Sapi extends \Limoncello\Core\Application\Sapi |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var ResponseInterface |
||
| 30 | */ |
||
| 31 | private $response; |
||
| 32 | |||
| 33 | /** @noinspection PhpMissingParentCallCommonInspection |
||
| 34 | * @inheritdoc |
||
| 35 | */ |
||
| 36 | 1 | public function handleResponse(ResponseInterface $response): void |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return ResponseInterface |
||
| 43 | */ |
||
| 44 | 1 | public function getResponse(): ResponseInterface |
|
| 48 | } |
||
| 49 |