| 1 | <?php |
||
| 14 | final class DatabaseAction implements ActionInterface, CrucialActionInterface |
||
| 15 | { |
||
| 16 | public static $defaultName = 'database'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var InformationCollection |
||
| 20 | */ |
||
| 21 | private $informationCollection; |
||
| 22 | |||
| 23 | public function __construct(InformationCollection $informationCollection) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function act(InformationCollected $event): void |
||
| 42 | } |
||
| 43 |