* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Country\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Country\Command\AddCountryCommand; use PrestaShop\PrestaShop\Core\Domain\Country\ValueObject\CountryId; /** * Defines a contract for AddCountryHandler */ interface AddCountryHandlerInterface { /** * @param AddCountryCommand $command * * @return CountryId */ public function handle(AddCountryCommand $command): CountryId; }