1 | <?php |
||
14 | class DatabaseAction implements ActionInterface, CrucialActionInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var InformationCollection |
||
18 | */ |
||
19 | private $informationCollection; |
||
20 | |||
21 | public function __construct(InformationCollection $informationCollection) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function act(InformationCollected $event): void |
||
40 | } |
||
41 |