1 | <?php |
||
27 | class StoreCreditQuote extends MagentoModuleAbstract |
||
28 | { |
||
29 | /** |
||
30 | * Allows you to remove store credit amount from the shopping cart (quote) and increase the customer store credit. |
||
31 | * |
||
32 | * @param string $quoteId |
||
33 | * @param string $store |
||
34 | * |
||
35 | * @return ActionInterface |
||
36 | */ |
||
37 | public function removeAmount($quoteId, $store = null) |
||
41 | |||
42 | /** |
||
43 | * Allows you to set amount from the customer store credit to the shopping cart. |
||
44 | * |
||
45 | * @param string $quoteId |
||
46 | * @param string $store |
||
47 | * |
||
48 | * @return ActionInterface |
||
49 | */ |
||
50 | public function setAmount($quoteId, $store = null) |
||
54 | } |
||
55 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.