Skip to content

Commit

Permalink
CC-31222 Added extension point to customer delete action. (#10684)
Browse files Browse the repository at this point in the history
CC-31222 Added extension point to customer delete action.
  • Loading branch information
artem-png authored Dec 11, 2023
1 parent 4e8a2e8 commit 83d918f
Showing 1 changed file with 28 additions and 0 deletions.
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);
}

0 comments on commit 83d918f

Please sign in to comment.