* @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\Adapter\Carrier\CommandHandler; use PrestaShop\PrestaShop\Adapter\Carrier\AbstractCarrierHandler; use PrestaShop\PrestaShop\Core\Domain\Carrier\Command\BulkDeleteCarrierCommand; use PrestaShop\PrestaShop\Core\Domain\Carrier\CommandHandler\BulkDeleteCarrierHandlerInterface; use PrestaShop\PrestaShop\Core\Domain\Carrier\Exception\CannotDeleteCarrierException; use PrestaShop\PrestaShop\Core\Domain\Carrier\Exception\CarrierException; use PrestaShopException; /** * Bulk deletes carriers */ class BulkDeleteCarrierHandler extends AbstractCarrierHandler implements BulkDeleteCarrierHandlerInterface { /** * {@inheritdoc} */ public function handle(BulkDeleteCarrierCommand $command) { foreach ($command->getCarrierIds() as $carrierId) { $carrier = $this->getCarrier($carrierId); try { if (!$carrier->delete()) { throw new CannotDeleteCarrierException(sprintf('Cannot delete carrier with id "%d"', $carrierId->getValue()), CannotDeleteCarrierException::BULK_DELETE); } } catch (PrestaShopException $e) { throw new CarrierException(sprintf('An error occurred when deleting carrier with id "%d"', $carrierId->getValue())); } } } }