Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class AbstractRequestEvent |
||
8 | { |
||
9 | /** |
||
10 | * @var ServerRequestInterface |
||
11 | */ |
||
12 | private $request; |
||
13 | |||
14 | /** |
||
15 | * AbstractRequestEvent constructor. |
||
16 | * |
||
17 | * @param ServerRequestInterface $request |
||
18 | */ |
||
19 | public function __construct(ServerRequestInterface $request) |
||
20 | { |
||
21 | $this->request = $request; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return ServerRequestInterface |
||
26 | * @codeCoverageIgnore |
||
27 | */ |
||
28 | public function getRequest() |
||
31 | } |
||
32 | } |
||
33 |