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