| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | class GH6884Person |
||
| 58 | { |
||
| 59 | /** @Id() @Column(type="integer") @GeneratedValue() */ |
||
| 60 | public $id; |
||
| 61 | |||
| 62 | /** @Column(type="boolean", nullable=false) */ |
||
| 63 | public $isAlive = false; |
||
| 64 | |||
| 65 | /** @var bool */ |
||
| 66 | public $nonOrmProperty = false; |
||
| 67 | |||
| 68 | public function onPostUpdate(GH6884Person $person, LifecycleEventArgs $eventArgs): void |
||
| 75 |