Issues (3641)

...ServicePointAvailabilityCalculatorInterface.php (1 issue)

1
<?php
2
3
/**
4
 * MIT License
5
 * For full license information, please view the LICENSE file that was distributed with this source code.
6
 */
7
8
namespace Spryker\Client\ClickAndCollectExample\Calculator;
9
10
use Generated\Shared\Transfer\ProductOfferServicePointAvailabilityCollectionTransfer;
11
use Generated\Shared\Transfer\ProductOfferServicePointAvailabilityConditionsTransfer;
12
13
interface ProductOfferServicePointAvailabilityCalculatorInterface
14
{
15
    /**
16
     * @param \Generated\Shared\Transfer\ProductOfferServicePointAvailabilityCollectionTransfer $productOfferServicePointAvailabilityCollectionTransfer
17
     * @param \Generated\Shared\Transfer\ProductOfferServicePointAvailabilityConditionsTransfer $productOfferServicePointAvailabilityConditionsTransfer
18
     *
19
     * @return array<string, list<\Generated\Shared\Transfer\ProductOfferServicePointAvailabilityResponseItemTransfer>>
0 ignored issues
show
Documentation Bug introduced by
The doc comment array<string, list<\Gene...yResponseItemTransfer>> at position 4 could not be parsed: Expected '>' at position 4, but found 'list'.
Loading history...
20
     */
21
    public function calculateProductOfferServicePointAvailabilities(
22
        ProductOfferServicePointAvailabilityCollectionTransfer $productOfferServicePointAvailabilityCollectionTransfer,
23
        ProductOfferServicePointAvailabilityConditionsTransfer $productOfferServicePointAvailabilityConditionsTransfer
24
    ): array;
25
}
26