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