1 | <?php |
||
27 | class GiftMessage extends MagentoModuleAbstract |
||
28 | { |
||
29 | /** |
||
30 | * Allows you to set a global gift message for the shopping cart (quote). |
||
31 | * |
||
32 | * @param string $quoteId |
||
33 | * @param array $giftMessage |
||
34 | * @param string $store |
||
35 | * |
||
36 | * @return ActionInterface |
||
37 | */ |
||
38 | public function setForQuote($quoteId, $giftMessage, $store) |
||
42 | |||
43 | /** |
||
44 | * Allows you to set a gift message for an item in the shopping cart (quote). |
||
45 | * |
||
46 | * @param string $quoteItemId |
||
47 | * @param array $giftMessage |
||
48 | * @param string $store |
||
49 | * |
||
50 | * @return ActionInterface |
||
51 | */ |
||
52 | public function setForQuoteItem($quoteItemId, $giftMessage, $store) |
||
56 | |||
57 | /** |
||
58 | * Allows you to set a gift message for a product in the shopping cart (quote). |
||
59 | * |
||
60 | * @param string $quoteId |
||
61 | * @param array $productsAndMessages |
||
62 | * @param string $store |
||
63 | * |
||
64 | * @return ActionInterface |
||
65 | */ |
||
66 | public function setForQuoteProduct($quoteId, $productsAndMessages, $store) |
||
70 | } |
||
71 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.