1 | <?php |
||
6 | class ProcessingProgressEvent extends Event |
||
7 | { |
||
8 | |||
9 | private $source = null; |
||
10 | |||
11 | private $destination = null; |
||
12 | |||
13 | private $file = null; |
||
14 | |||
15 | private $progress = null; |
||
16 | |||
17 | 10 | public function __construct (AbstractAdapter $source, AbstractAdapter $destination, $file, $progress) |
|
34 | |||
35 | 2 | public function getSource () |
|
39 | |||
40 | 1 | public function getDestination () |
|
44 | |||
45 | 3 | public function getFile () |
|
49 | |||
50 | 6 | public function getProgress () |
|
54 | } |
||
55 |