| 1 | <?php |
||
| 16 | class DoctrineDocumentEvent extends Event |
||
| 17 | { |
||
| 18 | private $identity; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var LifecycleEventArgs |
||
| 22 | */ |
||
| 23 | private $lifecycleEventArgs; |
||
| 24 | |||
| 25 | public function __construct(LifecycleEventArgs $lifecycleEventArgs, $identity) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return LifecycleEventArgs |
||
| 33 | */ |
||
| 34 | public function getLifecycleEventArgs() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return mixed |
||
| 41 | */ |
||
| 42 | public function getIdentity() |
||
| 46 | } |
||
| 47 |