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