* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Core\Domain\OrderState\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\OrderState\Command\EditOrderStateCommand; /** * Interface for service that handles order state editing command */ interface EditOrderStateHandlerInterface { public function handle(EditOrderStateCommand $command); }