This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Roman Ratsun
committed
Feb 29, 2024
1 parent
638e435
commit e696478
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
{ | ||
} | ||
} |