| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class DoctrineObjectEvent extends Event |
||
| 17 | { |
||
| 18 | public function __construct(private LifecycleEventArgs $lifecycleEventArgs, private $identity) |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return LifecycleEventArgs |
||
| 24 | */ |
||
| 25 | public function getLifecycleEventArgs() |
||
| 26 | { |
||
| 27 | return $this->lifecycleEventArgs; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return mixed |
||
| 32 | */ |
||
| 33 | public function getIdentity() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |