1 | <?php |
||
16 | class PersistEvent extends Event |
||
17 | { |
||
18 | /** |
||
19 | * @var object |
||
20 | */ |
||
21 | private $document; |
||
22 | |||
23 | /** |
||
24 | * @param object $document object of the document being persisted |
||
25 | */ |
||
26 | public function __construct($document) |
||
30 | |||
31 | /** |
||
32 | * @return object |
||
33 | */ |
||
34 | public function getDocument() |
||
38 | } |
||
39 |