* @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\Store\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Store\Command\ToggleStoreStatusCommand; /** * Interface for ToggleStoreStatusHandler */ interface ToggleStoreStatusHandlerInterface { /** * @param ToggleStoreStatusCommand $command */ public function handle(ToggleStoreStatusCommand $command): void; }