1 | <?php |
||
17 | abstract class AbstractTransformEvent extends Event |
||
18 | { |
||
19 | /** |
||
20 | * @var Document |
||
21 | */ |
||
22 | protected $document; |
||
23 | |||
24 | /** |
||
25 | * @var array |
||
26 | */ |
||
27 | private $fields; |
||
28 | |||
29 | /** |
||
30 | * @var object |
||
31 | */ |
||
32 | private $object; |
||
33 | |||
34 | 9 | public function __construct(Document $document, array $fields, object $object) |
|
40 | |||
41 | 5 | public function getDocument(): Document |
|
45 | |||
46 | 2 | public function getFields(): array |
|
50 | |||
51 | 2 | public function getObject(): object |
|
55 | } |
||
56 |