-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from spryker/feature/ps-1118/master-minimum-o…
…rder-value PS-1118 release PR
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
.../Dependency/Plugin/SalesOrderThresholdWidget/SalesOrderThresholdWidgetPluginInterface.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,25 @@ | ||
<?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 SprykerShop\Yves\CheckoutPage\Dependency\Plugin\SalesOrderThresholdWidget; | ||
|
||
use ArrayObject; | ||
use Spryker\Yves\Kernel\Dependency\Plugin\WidgetPluginInterface; | ||
|
||
interface SalesOrderThresholdWidgetPluginInterface extends WidgetPluginInterface | ||
{ | ||
public const NAME = 'SalesOrderThresholdWidgetPlugin'; | ||
|
||
/** | ||
* @api | ||
* | ||
* @param \ArrayObject|\Generated\Shared\Transfer\ExpenseTransfer[] $expenseTransfers | ||
* | ||
* @return void | ||
*/ | ||
public function initialize(ArrayObject $expenseTransfers): void; | ||
} |
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
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