| 1 | <?php |
||
| 27 | class CartCustomer extends MagentoModuleAbstract |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Allows you to set the customer addresses in the shopping cart (quote). |
||
| 31 | * |
||
| 32 | * @param int $quoteId |
||
| 33 | * @param array $customerAddressData |
||
| 34 | * @param string $store |
||
| 35 | * |
||
| 36 | * @return ActionInterface |
||
| 37 | */ |
||
| 38 | public function setAddresses($quoteId, $customerAddressData, $store = null) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Allows you to add information about the customer to a shopping cart (quote). |
||
| 45 | * |
||
| 46 | * @param int $quoteId |
||
| 47 | * @param array $customerData |
||
| 48 | * @param string $store |
||
| 49 | * |
||
| 50 | * @return ActionInterface |
||
| 51 | */ |
||
| 52 | public function setCustomer($quoteId, $customerData, $store = null) |
||
| 56 | } |
||
| 57 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.