Error 400 Bad Request

POST https://www.banholzerundwenz.de/checkout/line-item/add

Forwarded to ErrorController (7050be)

Exceptions

Line item type "product'UYjVLk<'">)xxwOFz" is not supported.

Exception

Shopware\Core\Checkout\Cart\ CartException

Show exception properties
Shopware\Core\Checkout\Cart\CartException {#5483
  -statusCode: 400
  -headers: []
  #parameters: array:1 [
    "type" => "product'UYjVLk<'">)xxwOFz"
  ]
  #statusCode: 400
  #errorCode: "CHECKOUT__CART_LINE_ITEM_TYPE_NOT_SUPPORTED"
}
  1.         );
  2.     }
  3.     public static function lineItemTypeNotSupported(string $type): self
  4.     {
  5.         return new self(
  6.             Response::HTTP_BAD_REQUEST,
  7.             self::CART_LINE_ITEM_TYPE_NOT_SUPPORTED_CODE,
  8.             'Line item type "{{ type }}" is not supported.',
  9.             ['type' => $type]
  10.         );
  1.             if ($handler->supports($type)) {
  2.                 return $handler;
  3.             }
  4.         }
  5.         throw CartException::lineItemTypeNotSupported($type);
  6.     }
  7.     /**
  8.      * @param array<string, mixed> $data
  9.      */
  1.             $data['id'] = Uuid::randomHex();
  2.         }
  3.         $this->validate($data);
  4.         $handler = $this->getHandler($data['type'] ?? '');
  5.         $lineItem = $handler->create($data, $context);
  6.         $lineItem->markModified();
  7.         return $lineItem;
  1.             try {
  2.                 $items = [];
  3.                 /** @var RequestDataBag $lineItemData */
  4.                 foreach ($lineItems as $lineItemData) {
  5.                     try {
  6.                         $item = $this->lineItemFactoryRegistry->create($this->getLineItemArray($lineItemData, [
  7.                             'quantity' => 1,
  8.                             'stackable' => true,
  9.                             'removable' => true,
  10.                         ]), $context);
  11.                         $count += $item->getQuantity();
in vendor/shopware/core/Profiling/Profiler.php -> Shopware\Storefront\Controller\{closure} (line 67)
  1.         try {
  2.             foreach (self::$profilers as $profiler) {
  3.                 $profiler->start($name, $category, $tags);
  4.             }
  5.             $result = $closure();
  6.         } finally {
  7.             foreach (self::$profilers as $profiler) {
  8.                 $profiler->stop($name);
  9.             }
  10.         }
  1.      * ]
  2.      */
  3.     #[Route(path: '/checkout/line-item/add', name: 'frontend.checkout.line-item.add', defaults: ['XmlHttpRequest' => true], methods: ['POST'])]
  4.     public function addLineItems(Cart $cart, RequestDataBag $requestDataBag, Request $request, SalesChannelContext $context): Response
  5.     {
  6.         return Profiler::trace('cart::add-line-item', function () use ($cart, $requestDataBag, $request, $context) {
  7.             /** @var RequestDataBag|null $lineItems */
  8.             $lineItems = $requestDataBag->get('lineItems');
  9.             if (!$lineItems) {
  10.                 throw RoutingException::missingRequestParameter('lineItems');
  11.             }
in vendor/symfony/http-kernel/HttpKernel.php -> addLineItems (line 183)
  1.         $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller = $event->getController();
  3.         $arguments = $event->getArguments();
  4.         // call controller
  5.         $response = $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this, $request, $type, $response, $event);
  9.             $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response = null;
  4.         try {
  5.             return $response = $this->handleRaw($request, $type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.             $this->dispatcher->dispatch($event);
  2.             return $event->getResponse();
  3.         }
  4.         return parent::handle($request, $type, $catch);
  5.     }
  6. }
  1.         if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request, $type, $catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
  9.         }
  10.     }
  1.     protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response
  2.     {
  3.         $this->surrogate?->addSurrogateCapability($request);
  4.         // always a "master" request (as the real master request can be in cache)
  5.         $response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);
  6.         $this->forwardedRequest = $request;
  7.         // These headers drive how the body is restored before sending the response.
  8.         // Only the store and the surrogate may set them, never the backend.
  9.         $response->headers->remove('X-Body-File');
  1.      */
  2.     protected function pass(Request $request, bool $catch = false): Response
  3.     {
  4.         $this->record($request, 'pass');
  5.         return $this->forward($request, $catch);
  6.     }
  7.     /**
  8.      * Invalidates non-safe methods (like POST, PUT, and DELETE).
  9.      *
  1.      *
  2.      * @see RFC2616 13.10
  3.      */
  4.     protected function invalidate(Request $request, bool $catch = false): Response
  5.     {
  6.         $response = $this->pass($request, $catch);
  7.         // invalidate only when the response is successful
  8.         if ($response->isSuccessful() || $response->isRedirect()) {
  9.             try {
  10.                 $this->store->invalidate($request);
  1.         }
  2.         $this->traces[$this->getTraceKey($request)] = [];
  3.         if (!$request->isMethodSafe()) {
  4.             $response = $this->invalidate($request, $catch);
  5.         } elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {
  6.             $response = $this->pass($request, $catch);
  7.         } elseif ($this->options['allow_reload'] && $request->isNoCache()) {
  8.             /*
  9.                 If allow_reload is configured and the client requests "Cache-Control: no-cache",
  1.         // only handle main request inside http cache, because ESI tags are also interpreted as main request.
  2.         // sub requests are requests, which are forwarded to the kernel inside the php stack
  3.         // https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894
  4.         if ($type === HttpKernelInterface::MAIN_REQUEST) {
  5.             $response = parent::handle($request, $type, $catch);
  6.         } elseif ($request->attributes->has('_sw_esi')) {
  7.             $response = parent::handle($request, $type, $catch);
  8.         } else {
  9.             $response = $this->getKernel()->handle($request, $type, $catch);
  10.         }
in vendor/shopware/core/Kernel.php -> handle (line 136)
  1.     public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
  2.     {
  3.         $this->boot();
  4.         return $this->getHttpKernel()->handle($request, $type, $catch);
  5.     }
  6.     public function boot(): void
  7.     {
  8.         if (!$this->booted) {
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response = $this->kernel->handle($this->request);
  6.         $response->send(false);
  7.         if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8.             fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/html/shopware/vendor/autoload_runtime.php') in public/index.php (line 11)
  1. use Shopware\Core\Installer\InstallerKernel;
  2. use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
  3. $_SERVER['SCRIPT_FILENAME'] = __FILE__;
  4. require_once __DIR__ . '/../vendor/autoload_runtime.php';
  5. if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
  6.     $_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
  7. }

Logs

Level Channel Message
INFO 22:27:54 php User Deprecated: Method "Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()" might add "void" as a native return type declaration in the future. Do the same in implementation "Frosh\DevelopmentHelper\Component\DependencyInjection\FroshDevelopmentHelperExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:27:54 php User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class uses "Symfony\Component\VarExporter\LazyGhostTrait" that is deprecated since Symfony 7.3, use native lazy objects instead.
{
    "exception": {}
}
DEBUG 22:27:54 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::disableCacheForAffiliateTracking".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::disableCacheForAffiliateTracking"
}
DEBUG 22:27:54 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Framework\Adapter\Cache\CacheTagCollector::__invoke".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheTagCollector::__invoke"
}
DEBUG 22:27:54 event Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Profiling\Subscriber\CacheTagCollectorSubscriber::add".
{
    "event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
    "listener": "Shopware\\Core\\Profiling\\Subscriber\\CacheTagCollectorSubscriber::add"
}
INFO 22:27:54 cache Item "system-config-" is locked, waiting for it to be released
{
    "key": "system-config-"
}
INFO 22:27:54 cache Item "system-config-" not found while lock was released, now retrying
{
    "key": "system-config-"
}
INFO 22:27:54 cache Lock acquired, now computing item "system-config-"
{
    "key": "system-config-"
}
INFO 22:27:54 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://www.banholzerundwenz.de/_profiler/latest?ip=2a03%3Acfc0%3A8000%3A2d%3A%3Ac122%3Ad611&type=request",
    "method": "GET"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::__invoke"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent".
{
    "event": "kernel.request",
    "listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
DEBUG 22:27:54 event Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request".
{
    "event": "kernel.request",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
INFO 22:27:54 php User Deprecated: The "Shopware\Core\Framework\Adapter\Twig\TwigEnvironment" class is considered internal. It may change without further notice. You should not use it from "Frosh\DevelopmentHelper\Component\Profiler\TwigDecorator".
{
    "exception": {}
}
INFO 22:27:54 php User Deprecated: The "Symfony\Bridge\Twig\DataCollector\TwigDataCollector" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Frosh\DevelopmentHelper\Component\Profiler\TwigDataCollector".
{
    "exception": {}
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Mcp\Authentication\McpAuthenticationListener::authenticate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Mcp\\Authentication\\McpAuthenticationListener::authenticate"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Core\Content\ProductExport\Tracking\SalesChannelTrackingListener::storeReferralCode".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Core\\Content\\ProductExport\\Tracking\\SalesChannelTrackingListener::storeReferralCode"
}
DEBUG 22:27:54 event Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking".
{
    "event": "kernel.controller",
    "listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
DEBUG 22:27:54 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
DEBUG 22:27:54 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 22:27:54 event Notified event "kernel.controller_arguments" to listener "ContainerGSBpz60\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerGSBpz60\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
DEBUG 22:27:54 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

CartException
Shopware\Core\Checkout\Cart\CartException:
Line item type "product'UYjVLk<'">)xxwOFz" is not supported.

  at vendor/shopware/core/Checkout/Cart/CartException.php:263
  at Shopware\Core\Checkout\Cart\CartException::lineItemTypeNotSupported('product\'UYjVLk<\'">)xxwOFz')
     (vendor/shopware/core/Checkout/Cart/LineItemFactoryRegistry.php:110)
  at Shopware\Core\Checkout\Cart\LineItemFactoryRegistry->getHandler('product\'UYjVLk<\'">)xxwOFz')
     (vendor/shopware/core/Checkout/Cart/LineItemFactoryRegistry.php:52)
  at Shopware\Core\Checkout\Cart\LineItemFactoryRegistry->create(array('quantity' => 1, 'stackable' => true, 'removable' => true, 'id' => '6456cdf231234744920961e7253a6a10', 'referencedId' => '6456cdf231234744920961e7253a6a10', 'type' => 'product\'UYjVLk<\'">)xxwOFz'), object(SalesChannelContext))
     (vendor/shopware/storefront/Controller/CartLineItemController.php:300)
  at Shopware\Storefront\Controller\CartLineItemController->Shopware\Storefront\Controller\{closure}()
     (vendor/shopware/core/Profiling/Profiler.php:67)
  at Shopware\Core\Profiling\Profiler::trace('cart::add-line-item', object(Closure))
     (vendor/shopware/storefront/Controller/CartLineItemController.php:286)
  at Shopware\Storefront\Controller\CartLineItemController->addLineItems(object(Cart), object(RequestDataBag), object(Request), object(SalesChannelContext))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
  at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:476)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:278)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:292)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(object(Request), true)
     (vendor/symfony/http-kernel/HttpCache/HttpCache.php:206)
  at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
     (vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:66)
  at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
     (vendor/shopware/core/Kernel.php:136)
  at Shopware\Core\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/html/shopware/vendor/autoload_runtime.php')
     (public/index.php:11)