Issues (3877)

Business/Reader/CategoryReaderInterface.php (2 issues)

1
<?php
2
3
/**
4
 * Copyright © 2016-present Spryker Systems GmbH. All rights reserved.
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace Spryker\Zed\CategoryDiscountConnector\Business\Reader;
9
10
interface CategoryReaderInterface
11
{
12
    /**
13
     * @return array<string, string>
14
     */
15
    public function getCategoryNamesIndexedByCategoryKey(): array;
16
17
    /**
18
     * @param array<int, list<\Generated\Shared\Transfer\ProductCategoryTransfer>> $productCategoryTransfersGroupedByIdProductAbstract
0 ignored issues
show
Documentation Bug introduced by
The doc comment array<int, list<\Generat...oductCategoryTransfer>> at position 4 could not be parsed: Expected '>' at position 4, but found 'list'.
Loading history...
19
     *
20
     * @return array<int, list<string>>
0 ignored issues
show
Documentation Bug introduced by
The doc comment array<int, list<string>> at position 4 could not be parsed: Expected '>' at position 4, but found 'list'.
Loading history...
21
     */
22
    public function getCategoryKeysGroupedByIdCategoryNode(array $productCategoryTransfersGroupedByIdProductAbstract): array;
23
}
24