-
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.
SUPESC-557: Fixed an issue when MiniCartWidget loses all carts (#9434)
SUPESC-557 Fixed an issue when MiniCartWidget loses all carts
- Loading branch information
1 parent
35100d1
commit c2f0fdb
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...pryker/Client/CustomerExtension/Dependency/Plugin/DefaultAddressChangePluginInterface.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\Client\CustomerExtension\Dependency\Plugin; | ||
|
||
use Generated\Shared\Transfer\CustomerTransfer; | ||
|
||
/** | ||
* Provides extension capabilities for actions executed after a customer address has been created or updated. | ||
*/ | ||
interface DefaultAddressChangePluginInterface | ||
{ | ||
/** | ||
* Specification: | ||
* - Executes additional operations after a customer address has been created or updated. | ||
* | ||
* @api | ||
* | ||
* @param \Generated\Shared\Transfer\CustomerTransfer $customerTransfer | ||
* | ||
* @return void | ||
*/ | ||
public function process(CustomerTransfer $customerTransfer); | ||
} |