Skip to content

Commit

Permalink
Merge pull request #1371 from spryker-shop/feature/cc-29686/dev-commo…
Browse files Browse the repository at this point in the history
…n-entry-point-po-sp-availability

Auto-merge based on green CI result.
  • Loading branch information
spryker-release-bot authored Sep 5, 2023
2 parents def35a5 + 7abc545 commit b9b3bdf
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 5 deletions.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
"spryker/checkout-extension": "^1.3.0",
"spryker/checkout-rest-api": "^3.7.1",
"spryker/checkout-rest-api-extension": "^1.0.0",
"spryker/click-and-collect-example": "^0.1.0",
"spryker/cms": "^7.0.0",
"spryker/cms-block": "^3.3.0",
"spryker/cms-block-category-connector": "^2.5.0",
Expand Down Expand Up @@ -848,6 +849,8 @@
"spryker/product-offer-sales-rest-api": "^1.0.0",
"spryker/product-offer-service-point": "^0.2.0",
"spryker/product-offer-service-point-availability": "^0.1.0",
"spryker/product-offer-service-point-availability-calculator": "^0.1.0",
"spryker/product-offer-service-point-availability-calculator-extension": "^0.1.0",
"spryker/product-offer-service-point-availability-extension": "^0.1.0",
"spryker/product-offer-service-point-data-import": "^0.2.0",
"spryker/product-offer-service-point-storage": "^0.2.0",
Expand Down
144 changes: 139 additions & 5 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,24 @@
<?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\Client\ProductOfferServicePointAvailabilityCalculator;

use Spryker\Client\ClickAndCollectExample\Plugin\ExampleClickAndCollectProductOfferServicePointAvailabilityCalculatorStrategyPlugin;
use Spryker\Client\ProductOfferServicePointAvailabilityCalculator\ProductOfferServicePointAvailabilityCalculatorDependencyProvider as SprykerProductOfferServicePointAvailabilityCalculatorDependencyProvider;

class ProductOfferServicePointAvailabilityCalculatorDependencyProvider extends SprykerProductOfferServicePointAvailabilityCalculatorDependencyProvider
{
/**
* @return list<\Spryker\Client\ProductOfferServicePointAvailabilityCalculatorExtension\Dependency\Plugin\ProductOfferServicePointAvailabilityCalculatorStrategyPluginInterface>
*/
protected function getProductOfferServicePointAvailabilityCalculatorStrategyPlugins(): array
{
return [
new ExampleClickAndCollectProductOfferServicePointAvailabilityCalculatorStrategyPlugin(),
];
}
}

0 comments on commit b9b3bdf

Please sign in to comment.