* @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\Product\Supplier\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Product\Supplier\Command\SetProductDefaultSupplierCommand; /** * Defines contract to handle @see SetProductDefaultSupplierCommand */ interface SetProductDefaultSupplierHandlerInterface { /** * @param SetProductDefaultSupplierCommand $command */ public function handle(SetProductDefaultSupplierCommand $command): void; }