* @copyright 2020 emarketing AG * @license https://opensource.org/licenses/GPL-3.0 GNU General Public License version 3 */ namespace Emarketing\Action; /** * Class Countries * @package Emarketing\Action */ class Countries { /** * @return array */ public function fetchCountries() { $serviceCountries = new \Emarketing\Service\Countries; return $serviceCountries->buildCountryInformation(); } }