for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @file
* Magento API Client (SOAP v1).
* Allows wrappers for each call, dependencies injections
* and code completion.
*
* @author Sébastien MALOT <[email protected]>
* @license MIT
* @url <https://github.com/smalot/magento-client>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Smalot\Magento\Directory;
use Smalot\Magento\ActionInterface;
use Smalot\Magento\MagentoModuleAbstract;
* Class Directory
* @package Smalot\Magento\Directory
class Directory extends MagentoModuleAbstract
{
* Retrieve the list of countries from Magento.
* @return ActionInterface
public function getCountryList()
return $this->__createAction('directory_country.list', func_get_args());
}
* Retrieve the list of regions in the specified country.
* @param string $country
public function getRegionList($country)
$country
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return $this->__createAction('directory_region.list', func_get_args());
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.