1 | <?php |
||
8 | class TransportEvent extends Event |
||
9 | { |
||
10 | /** |
||
11 | * @var TransportInterface |
||
12 | */ |
||
13 | protected $transport; |
||
14 | |||
15 | /** |
||
16 | * @param TransportInterface $transport |
||
17 | */ |
||
18 | 58 | public function __construct(TransportInterface $transport) |
|
22 | |||
23 | /** |
||
24 | * @return TransportInterface |
||
25 | */ |
||
26 | 2 | public function getTransport() |
|
30 | } |
||
31 |