Skip to content

Commit

Permalink
SUPESC-557: Fixed an issue when MiniCartWidget loses all carts (#9434)
Browse files Browse the repository at this point in the history
SUPESC-557  Fixed an issue when MiniCartWidget loses all carts
  • Loading branch information
Alexandra1811 authored Jul 11, 2022
1 parent 35100d1 commit c2f0fdb
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\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);
}

0 comments on commit c2f0fdb

Please sign in to comment.