Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Ratsun committed Feb 29, 2024
1 parent 638e435 commit e696478
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/Event.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* AtroCore Software
*
* This source file is available under GNU General Public License version 3 (GPLv3).
* Full copyright and license information is available in LICENSE.md, located in the root directory.
*
* @copyright Copyright (c) AtroCore UG (https://www.atrocore.com)
* @license GPLv3 (https://www.gnu.org/licenses/)
*/

declare(strict_types=1);

namespace Dam;

use Atro\Core\ModuleManager\AfterInstallAfterDelete;

class Event extends AfterInstallAfterDelete
{
public function afterInstall(): void
{
}

public function afterDelete(): void
{
}
}

0 comments on commit e696478

Please sign in to comment.