1 | <?php |
||
27 | class ProductTierPrice extends MagentoModuleAbstract |
||
28 | { |
||
29 | /** |
||
30 | * Allows you to retrieve information about product tier prices. |
||
31 | * |
||
32 | * @param string $productId |
||
33 | * @param string $identifierType |
||
34 | * |
||
35 | * @return ActionInterface |
||
36 | */ |
||
37 | public function getInfo($productId, $identifierType = null) |
||
41 | |||
42 | /** |
||
43 | * Allows you to update the product tier prices. |
||
44 | * |
||
45 | * @param string $productId |
||
46 | * @param array $tierPrices |
||
47 | * @param string $identifierType |
||
48 | * |
||
49 | * @return ActionInterface |
||
50 | */ |
||
51 | public function update($productId, $tierPrices, $identifierType = null) |
||
55 | } |
||
56 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.