vendor/shopware/core/Checkout/Cart/Validator.php line 25
<?php declare(strict_types=1);namespace Shopware\Core\Checkout\Cart;use Shopware\Core\Checkout\Cart\Error\ErrorCollection;use Shopware\Core\Framework\Log\Package;use Shopware\Core\System\SalesChannel\SalesChannelContext;#[Package('checkout')]class Validator{/*** @internal** @param CartValidatorInterface[] $validators*/public function __construct(private readonly iterable $validators){}public function validate(Cart $cart, SalesChannelContext $context): array{$errors = new ErrorCollection();foreach ($this->validators as $validator) {$validator->validate($cart, $errors, $context);}return array_values($errors->getElements());}}