| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class AbstractAppEvent extends Event |
||
| 9 | { |
||
| 10 | const NAME = 'defineMe'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var AbstractAppEntity |
||
| 14 | */ |
||
| 15 | protected $entity; |
||
| 16 | |||
| 17 | public function __construct(AbstractAppEntity $entity) |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return AbstractAppEntity |
||
| 24 | */ |
||
| 25 | public function getEntity(): AbstractAppEntity |
||
| 28 | } |
||
| 29 | } |