| 1 | <?php |
||
| 27 | class StoreCredit extends MagentoModuleAbstract |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * Allows you to retrieve the customer store credit balance amount. |
||
| 31 | * |
||
| 32 | * @param string $customerId |
||
| 33 | * @param string $websiteId |
||
| 34 | * |
||
| 35 | * @return ActionInterface |
||
| 36 | */ |
||
| 37 | public function getBalance($customerId, $websiteId) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Allows you to retrieve the customer store credit history information. |
||
| 44 | * |
||
| 45 | * @param string $customerId |
||
| 46 | * @param string $websiteId |
||
| 47 | * |
||
| 48 | * @return ActionInterface |
||
| 49 | */ |
||
| 50 | public function getHistory($customerId, $websiteId = 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.