Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class SectionEntryBeforeCreate extends Event |
||
28 | { |
||
29 | const NAME = 'section.entry.before.create'; |
||
30 | |||
31 | /** @var CommonSectionInterface */ |
||
32 | protected $entry; |
||
33 | |||
34 | public function __construct(CommonSectionInterface $entry) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * The entity that is about to be persisted. |
||
41 | */ |
||
42 | public function getEntry(): CommonSectionInterface |
||
47 |