Skip to content

Commit

Permalink
Merge remote-tracking branch 'nonsplit/master' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sabaa committed Dec 13, 2018
2 parents 69d4383 + d31a6ed commit aaea276
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 10 deletions.
106 changes: 96 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/**
* This file is part of the Spryker Suite.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

namespace Pyz\Zed\MerchantRelationshipSalesOrderThresholdGui;

use Spryker\Zed\MerchantRelationshipSalesOrderThresholdGui\Communication\Plugin\FormExpander\MerchantRelationshipHardThresholdFormExpanderPlugin;
use Spryker\Zed\MerchantRelationshipSalesOrderThresholdGui\Communication\Plugin\FormExpander\MerchantRelationshipSoftThresholdFixedFeeFormExpanderPlugin;
use Spryker\Zed\MerchantRelationshipSalesOrderThresholdGui\Communication\Plugin\FormExpander\MerchantRelationshipSoftThresholdFlexibleFeeFormExpanderPlugin;
use Spryker\Zed\MerchantRelationshipSalesOrderThresholdGui\Communication\Plugin\FormExpander\MerchantRelationshipSoftThresholdWithMessageFormExpanderPlugin;
use Spryker\Zed\MerchantRelationshipSalesOrderThresholdGui\MerchantRelationshipSalesOrderThresholdGuiDependencyProvider as SprykerMerchantRelationshipSalesOrderThresholdGuiDependencyProvider;

class MerchantRelationshipSalesOrderThresholdGuiDependencyProvider extends SprykerMerchantRelationshipSalesOrderThresholdGuiDependencyProvider
{
/**
* @return \Spryker\Zed\MerchantRelationshipSalesOrderThresholdGuiExtension\Dependency\Plugin\SalesOrderThresholdFormExpanderPluginInterface[]
*/
protected function getSalesOrderThresholdFormExpanderPlugins(): array
{
return [
new MerchantRelationshipHardThresholdFormExpanderPlugin(),
new MerchantRelationshipSoftThresholdWithMessageFormExpanderPlugin(),
new MerchantRelationshipSoftThresholdFixedFeeFormExpanderPlugin(),
new MerchantRelationshipSoftThresholdFlexibleFeeFormExpanderPlugin(),
];
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/**
* This file is part of the Spryker Suite.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

namespace Pyz\Zed\SalesOrderThresholdGui;

use Spryker\Zed\SalesOrderThresholdGui\Communication\Plugin\FormExpander\GlobalHardThresholdFormExpanderPlugin;
use Spryker\Zed\SalesOrderThresholdGui\Communication\Plugin\FormExpander\GlobalSoftThresholdFixedFeeFormExpanderPlugin;
use Spryker\Zed\SalesOrderThresholdGui\Communication\Plugin\FormExpander\GlobalSoftThresholdFlexibleFeeFormExpanderPlugin;
use Spryker\Zed\SalesOrderThresholdGui\Communication\Plugin\FormExpander\GlobalSoftThresholdWithMessageFormExpanderPlugin;
use Spryker\Zed\SalesOrderThresholdGui\SalesOrderThresholdGuiDependencyProvider as SprykerSalesOrderThresholdGuiDependencyProvider;

class SalesOrderThresholdGuiDependencyProvider extends SprykerSalesOrderThresholdGuiDependencyProvider
{
/**
* @return \Spryker\Zed\SalesOrderThresholdGuiExtension\Dependency\Plugin\SalesOrderThresholdFormExpanderPluginInterface[]
*/
protected function getSalesOrderThresholdFormExpanderPlugins(): array
{
return [
new GlobalHardThresholdFormExpanderPlugin(),
new GlobalSoftThresholdWithMessageFormExpanderPlugin(),
new GlobalSoftThresholdFixedFeeFormExpanderPlugin(),
new GlobalSoftThresholdFlexibleFeeFormExpanderPlugin(),
];
}
}

0 comments on commit aaea276

Please sign in to comment.