-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CC-31222 Added extension point to customer delete action. (#10684)
CC-31222 Added extension point to customer delete action.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
src/Spryker/Zed/CustomerExtension/Dependency/Plugin/CustomerPostDeletePluginInterface.php
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,28 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright © 2016-present Spryker Systems GmbH. All rights reserved. | ||
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file. | ||
*/ | ||
|
||
namespace Spryker\Zed\CustomerExtension\Dependency\Plugin; | ||
|
||
use Generated\Shared\Transfer\CustomerTransfer; | ||
|
||
/** | ||
* Provides an ability to execute additional actions after a customer has been deleted. | ||
*/ | ||
interface CustomerPostDeletePluginInterface | ||
{ | ||
/** | ||
* Specification: | ||
* - Executes additional actions after a customer has been deleted. | ||
* | ||
* @api | ||
* | ||
* @param \Generated\Shared\Transfer\CustomerTransfer $customerTransfer | ||
* | ||
* @return void | ||
*/ | ||
public function execute(CustomerTransfer $customerTransfer); | ||
} |