* @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\Zone\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Zone\Command\EditZoneCommand; /** * Defines contract for EditZoneHandler */ interface EditZoneHandlerInterface { /** * @param EditZoneCommand $command */ public function handle(EditZoneCommand $command): void; }