1 | <?php |
||
27 | class Directory extends MagentoModuleAbstract |
||
28 | { |
||
29 | /** |
||
30 | * Retrieve the list of countries from Magento. |
||
31 | * |
||
32 | * @return ActionInterface |
||
33 | */ |
||
34 | public function getCountryList() |
||
38 | |||
39 | /** |
||
40 | * Retrieve the list of regions in the specified country. |
||
41 | * |
||
42 | * @param string $country |
||
43 | * |
||
44 | * @return ActionInterface |
||
45 | */ |
||
46 | public function getRegionList($country) |
||
50 | } |
||
51 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.