1 | <?php |
||
20 | abstract class AbstractEvent extends Event |
||
21 | { |
||
22 | /** |
||
23 | * @var HttpAdapterInterface |
||
24 | */ |
||
25 | private $httpAdapter; |
||
26 | |||
27 | /** |
||
28 | * @param HttpAdapterInterface $httpAdapter |
||
29 | */ |
||
30 | 1053 | public function __construct(HttpAdapterInterface $httpAdapter) |
|
34 | |||
35 | /** |
||
36 | * @return HttpAdapterInterface |
||
37 | */ |
||
38 | 414 | public function getHttpAdapter() |
|
42 | } |
||
43 |