1 | <?php |
||
7 | class UnexpectedRequestException extends \RuntimeException |
||
8 | { |
||
9 | /** |
||
10 | * @var RequestInterface|null |
||
11 | */ |
||
12 | private $request; |
||
13 | |||
14 | 2 | public static function fromRequest(RequestInterface $request) |
|
22 | |||
23 | /** |
||
24 | * @return RequestInterface|null |
||
25 | */ |
||
26 | 1 | public function getRequest() |
|
30 | } |
||
31 |