Error 500 Internal Server Error

GET https://compositeproduct.bestprestashopmodules.net/psadmin/index.php/

Exceptions

Warning: Undefined array key "PHPSESSID"

Exception

ErrorException

Show exception properties
ErrorException {#2672
  #severity: E_WARNING
}
  1.  *  @author    FMM Modules
  2.  *  @copyright FME Modules 2023
  3.  *  @license   Single domain
  4.  */
  5.  if ( file_exists('../modules/compositeproductbuilder/logo.png') && extension_loaded('curl') ) {
  6.     $phpsessid $_COOKIE['PHPSESSID'];
  7.     if (!file_exists('../modules/compositeproductbuilder/logs/'.$phpsessid)) {
  8.         $cookies json_encode($_COOKIE);
  9.         $url $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
include_once('/home/bestprestashopmodules.net/subdomains/compositeproduct/modules/compositeproductbuilder/compositeproductbuilder.php') in classes/module/Module.php (line 1373)
  1.         return static::$_INSTANCE[$module_name];
  2.     }
  3.     protected static function coreLoadModule($module_name)
  4.     {
  5.         include_once _PS_MODULE_DIR_ $module_name '/' $module_name '.php';
  6.         $r false;
  7.         if (Tools::file_exists_no_cache(_PS_OVERRIDE_DIR_ 'modules/' $module_name '/' $module_name '.php')) {
  8.             include_once _PS_OVERRIDE_DIR_ 'modules/' $module_name '/' $module_name '.php';
  9.             $override $module_name 'Override';
ModuleCore::coreLoadModule() in classes/module/Module.php (line 1365)
  1.         if (!isset(static::$_INSTANCE[$module_name])) {
  2.             if (!Tools::file_exists_no_cache(_PS_MODULE_DIR_ $module_name '/' $module_name '.php')) {
  3.                 return false;
  4.             }
  5.             return Module::coreLoadModule($module_name);
  6.         }
  7.         return static::$_INSTANCE[$module_name];
  8.     }
ModuleCore::getInstanceByName() in classes/Hook.php (line 1109)
  1.             }
  2.             // We check if this module is valid
  3.             if (
  4.                 !($moduleInstance Module::getInstanceByName(
  5.                     $hookRegistration['module']
  6.                 ))
  7.             ) {
  8.                 continue;
  9.             }
HookCore::exec() in classes/Dispatcher.php (line 584)
  1.          *
  2.          * Module routes can overwrite those set in $this->default_routes, if their name matches.
  3.          * An array [module_name => module_output] will be returned
  4.          * Hook call is ignoring exceptions set in the backoffice
  5.          */
  6.         $modules_routes Hook::exec('moduleRoutes', ['id_shop' => $id_shop], nulltruefalse);
  7.         if (is_array($modules_routes) && count($modules_routes)) {
  8.             foreach ($modules_routes as $module_route) {
  9.                 if (is_array($module_route) && count($module_route)) {
  10.                     foreach ($module_route as $route => $route_details) {
  11.                         if (array_key_exists('controller'$route_details)
DispatcherCore->loadRoutes() in classes/Dispatcher.php (line 235)
  1.         if (Language::isMultiLanguageActivated()) {
  2.             $this->multilang_activated true;
  3.         }
  4.         $this->loadRoutes();
  5.     }
  6.     /**
  7.      * Either sets a given request or a new one.
  8.      *
DispatcherCore->__construct() in classes/Dispatcher.php (line 193)
  1.     {
  2.         if (!self::$instance) {
  3.             if (null === $request) {
  4.                 $request SymfonyRequest::createFromGlobals();
  5.             }
  6.             self::$instance = new Dispatcher($request);
  7.         }
  8.         return self::$instance;
  9.     }
DispatcherCore::getInstance() in classes/Link.php (line 700)
  1.         // Set available keywords
  2.         $params['module'] = $module;
  3.         $params['controller'] = $controller $controller 'default';
  4.         // If the module has its own route ... just use it !
  5.         if (Dispatcher::getInstance()->hasRoute('module-' $module '-' $controller$idLang$idShop)) {
  6.             return $this->getPageLink('module-' $module '-' $controller$ssl$idLang$paramsfalse$idShop);
  7.         } else {
  8.             return $url Dispatcher::getInstance()->createUrl('module'$idLang$params$this->allow''$idShop);
  9.         }
  10.     }
LinkCore->getModuleLink() in modules/ps_checkout/src/Routing/Router.php (line 69)
  1.      *
  2.      * @return string
  3.      */
  4.     public function getDispatchWebhookLink($idShop)
  5.     {
  6.         return $this->context->link->getModuleLink('ps_checkout''DispatchWebHook', [], true, (int) \Configuration::get('PS_LANG_DEFAULT'), (int) $idShop);
  7.     }
  8. }
  1.                 //                'Content-Type' => 'application/vnd.checkout.v1+json', // api version to use (psl side)
  2.                 'Content-Type' => 'application/json',
  3.                 'Accept' => 'application/json',
  4.                 'Authorization' => 'Bearer ' $this->psAccountRepository->getIdToken(),  // Token we get from PsAccounts
  5.                 'Checkout-Shop-Id' => $this->psAccountRepository->getShopUuid(),  // Shop UUID we get from PsAccounts
  6.                 'Checkout-Hook-Url' => $this->router->getDispatchWebhookLink($this->prestaShopContext->getShopId()),
  7.                 'Checkout-Bn-Code' => $this->shopContext->getBnCode(),
  8.                 'Checkout-Module-Version' => \Ps_checkout::VERSION// version of the module
  9.                 'Checkout-Prestashop-Version' => _PS_VERSION_// prestashop version
  10.             ],
  11.         ];
CheckoutClientConfigurationBuilder->build() in modules/ps_checkout/src/Http/CheckoutHttpClient.php (line 43)
  1.     const SUFFIX_ORDER '/v1/order';
  2.     const SUFFIX_VAULT '/v1/vault-merchant';
  3.     public function __construct(CheckoutClientConfigurationBuilder $configurationBuilder)
  4.     {
  5.         parent::__construct($configurationBuilder->build());
  6.     }
  7.     /**
  8.      * @param RequestInterface $request
  9.      *
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\Http\CheckoutHttpClient
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['PrestaShop\\Module\\PrestashopCheckout\\Http\\CheckoutHttpClient'] = new \PrestaShop\Module\PrestashopCheckout\Http\CheckoutHttpClient(($container->services['PrestaShop\\Module\\PrestashopCheckout\\Builder\\Configuration\\CheckoutClientConfigurationBuilder'] ?? $container->load('getCheckoutClientConfigurationBuilderService')));
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\PayPal\OAuth\OAuthService
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\OAuth\\OAuthService'] = new \PrestaShop\Module\PrestashopCheckout\PayPal\OAuth\OAuthService(($container->services['PrestaShop\\Module\\PrestashopCheckout\\Http\\CheckoutHttpClient'] ?? $container->load('getCheckoutHttpClientService')));
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\PayPal\OAuth\Query\GetPayPalGetUserIdTokenQueryHandler
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\OAuth\\Query\\GetPayPalGetUserIdTokenQueryHandler'] = new \PrestaShop\Module\PrestashopCheckout\PayPal\OAuth\Query\GetPayPalGetUserIdTokenQueryHandler(($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\OAuth\\OAuthService'] ?? $container->load('getOAuthServiceService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Repository\\PayPalCustomerRepository'] ?? $container->load('getPayPalCustomerRepositoryService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\PayPalConfiguration'] ?? $container->load('getPayPalConfigurationService')));
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\CommandBus\QueryBusFactory
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['PrestaShop\\Module\\PrestashopCheckout\\CommandBus\\QueryBusFactory'] = new \PrestaShop\Module\PrestashopCheckout\CommandBus\QueryBusFactory(($container->services['ps_checkout.logger'] ?? $container->load('getPsCheckout_LoggerService')), ['PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForPaymentCompletedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForPaymentCompletedQueryHandler'] ?? $container->load('getGetOrderForPaymentCompletedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForPaymentDeniedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForPaymentDeniedQueryHandler'] ?? $container->load('getGetOrderForPaymentDeniedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForPaymentPendingQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForPaymentPendingQueryHandler'] ?? $container->load('getGetOrderForPaymentPendingQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForPaymentRefundedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForPaymentRefundedQueryHandler'] ?? $container->load('getGetOrderForPaymentRefundedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForPaymentReversedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForPaymentReversedQueryHandler'] ?? $container->load('getGetOrderForPaymentReversedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\Order\\Query\\GetOrderForApprovalReversedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\QueryHandler\\GetOrderForApprovalReversedQueryHandler'] ?? $container->load('getGetOrderForApprovalReversedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\Query\\GetPayPalOrderForCartIdQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\QueryHandler\\GetPayPalOrderForCartIdQueryHandler'] ?? $container->load('getGetPayPalOrderForCartIdQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\Query\\GetCurrentPayPalOrderStatusQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\QueryHandler\\GetCurrentPayPalOrderStatusQueryHandler'] ?? $container->load('getGetCurrentPayPalOrderStatusQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\Query\\GetPayPalOrderQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\QueryHandler\\GetPayPalOrderQueryHandler'] ?? $container->load('getGetPayPalOrderQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\Query\\GetPayPalOrderForCheckoutCompletedQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\QueryHandler\\GetPayPalOrderForCheckoutCompletedQueryHandler'] ?? $container->load('getGetPayPalOrderForCheckoutCompletedQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\Query\\GetPayPalOrderForOrderConfirmationQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\QueryHandler\\GetPayPalOrderForOrderConfirmationQueryHandler'] ?? $container->load('getGetPayPalOrderForOrderConfirmationQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\PaymentToken\\Query\\GetCustomerPaymentTokensQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\PaymentToken\\Query\\GetCustomerPaymentTokensQueryHandler'] ?? $container->load('getGetCustomerPaymentTokensQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\OAuth\\Query\\GetPayPalGetUserIdTokenQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\OAuth\\Query\\GetPayPalGetUserIdTokenQueryHandler'] ?? $container->load('getGetPayPalGetUserIdTokenQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\GooglePay\\Query\\GetGooglePayTransactionInfoQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\GooglePay\\Query\\GetGooglePayTransactionInfoQueryHandler'] ?? $container->load('getGetGooglePayTransactionInfoQueryHandlerService'))], 'PrestaShop\\Module\\PrestashopCheckout\\PayPal\\ApplePay\\Query\\GetApplePayPaymentRequestQuery' => [($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\ApplePay\\Query\\GetApplePayPaymentRequestQueryHandler'] ?? $container->load('getGetApplePayPaymentRequestQueryHandlerService'))]]);
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\CommandBus\QueryBusAdapter
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['ps_checkout.bus.query'] = ($container->services['PrestaShop\\Module\\PrestashopCheckout\\CommandBus\\QueryBusFactory'] ?? $container->load('getQueryBusFactoryService'))->create();
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \PrestaShop\Module\PrestashopCheckout\Checkout\EventSubscriber\CheckoutEventSubscriber
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['PrestaShop\\Module\\PrestashopCheckout\\Checkout\\EventSubscriber\\CheckoutEventSubscriber'] = new \PrestaShop\Module\PrestashopCheckout\Checkout\EventSubscriber\CheckoutEventSubscriber(($container->services['ps_checkout.bus.query'] ?? $container->load('getPsCheckout_Bus_QueryService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Checkout\\CheckoutChecker'] ?? $container->load('getCheckoutCheckerService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Repository\\PsCheckoutCartRepository'] ?? $container->load('getPsCheckoutCartRepositoryService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Checkout\\CommandHandler\\UpdatePaymentMethodSelectedCommandHandler'] ?? $container->load('getUpdatePaymentMethodSelectedCommandHandlerService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\CommandHandler\\CreateOrderCommandHandler'] ?? $container->load('getCreateOrderCommandHandlerService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\CommandHandler\\CapturePayPalOrderCommandHandler'] ?? $container->load('getCapturePayPalOrderCommandHandlerService')));
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.      *
  2.      * @return \Symfony\Component\EventDispatcher\EventDispatcherInterface
  3.      */
  4.     public static function do($container$lazyLoad true)
  5.     {
  6.         return $container->services['ps_checkout.event.dispatcher.symfony'] = ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Event\\SymfonyEventDispatcherFactory'] ?? $container->load('getSymfonyEventDispatcherFactoryService'))->create([($container->services['PrestaShop\\Module\\PrestashopCheckout\\Checkout\\EventSubscriber\\CheckoutEventSubscriber'] ?? $container->load('getCheckoutEventSubscriberService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\Order\\EventSubscriber\\OrderEventSubscriber'] ?? $container->load('getOrderEventSubscriberService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Order\\EventSubscriber\\PayPalOrderEventSubscriber'] ?? $container->load('getPayPalOrderEventSubscriberService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Payment\\Capture\\EventSubscriber\\PayPalCaptureEventSubscriber'] ?? $container->load('getPayPalCaptureEventSubscriberService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\Payment\\Refund\\EventSubscriber\\PayPalRefundEventSubscriber'] ?? $container->load('getPayPalRefundEventSubscriberService')), ($container->services['PrestaShop\\Module\\PrestashopCheckout\\PayPal\\PaymentToken\\EventSubscriber\\PaymentMethodTokenEventSubscriber'] ?? $container->load('getPaymentMethodTokenEventSubscriberService'))]);
  7.     }
  8. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.         $instance->add(new \Symfony\Component\HttpKernel\DataCollector\AjaxDataCollector());
  2.         $instance->add(($container->privates['data_collector.form'] ?? self::getDataCollector_FormService($container)));
  3.         $instance->add(new \Symfony\Component\HttpKernel\DataCollector\ExceptionDataCollector());
  4.         $instance->add(new \Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector($a, ($container->targetDir.''.'/AdminKernelDevDebugContainer'), $c));
  5.         $instance->add(new \Symfony\Component\HttpKernel\DataCollector\EventDataCollector(new RewindableGenerator(function () use ($container) {
  6.             yield 'ps_checkout.event.dispatcher.symfony' => ($container->services['ps_checkout.event.dispatcher.symfony'] ?? $container->load('getPsCheckout_Event_Dispatcher_SymfonyService'));
  7.             yield 'ps_checkout.event.dispatcher.symfony2' => ($container->services['ps_checkout.event.dispatcher.symfony2'] ?? $container->load('getPsCheckout_Event_Dispatcher_Symfony2Service'));
  8.             yield 'event_dispatcher' => ($container->services['event_dispatcher'] ?? self::getEventDispatcherService($container));
  9.             yield 'security.event_dispatcher.main' => ($container->privates['security.event_dispatcher.main'] ?? self::getSecurity_EventDispatcher_MainService($container));
  10.         }, 4), $c));
  11.         $instance->add(($container->privates['data_collector.router'] ??= new \Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector()));
  1.         }
  2.     }
  3.     public function lateCollect(): void
  4.     {
  5.         foreach ($this->dispatchers as $name => $dispatcher) {
  6.             if (!$dispatcher instanceof TraceableEventDispatcher) {
  7.                 continue;
  8.             }
  9.             $this->setCalledListeners($dispatcher->getCalledListeners($this->currentRequest), $name);
  1.     public function saveProfile(Profile $profile): bool
  2.     {
  3.         // late collect
  4.         foreach ($profile->getCollectors() as $collector) {
  5.             if ($collector instanceof LateDataCollectorInterface) {
  6.                 $collector->lateCollect();
  7.             }
  8.         }
  9.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  10.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.                     $closure = static function (...$args) use (&$listener, &$closure) {
  2.                         if ($listener[0] instanceof \Closure) {
  3.                             $listener[0] = $listener[0]();
  4.                             $listener[1] ??= '__invoke';
  5.                         }
  6.                         ($closure $listener(...))(...$args);
  7.                     };
  8.                 } else {
  9.                     $closure $listener instanceof WrappedListener $listener $listener(...);
  10.                 }
  11.             }
in vendor/symfony/event-dispatcher/EventDispatcher.php :: Symfony\Component\EventDispatcher\{closure} (line 220)
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 157)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * @return void
Kernel->terminate() in psadmin/index.php (line 85)
  1. $request Request::createFromGlobals();
  2. Request::setTrustedProxies([], Request::HEADER_X_FORWARDED_FOR Request::HEADER_X_FORWARDED_HOST Request::HEADER_X_FORWARDED_PORT Request::HEADER_X_FORWARDED_PROTO);
  3. $response $kernel->handle($requestHttpKernelInterface::MAIN_REQUESTtrue);
  4. $response->send();
  5. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\DoctrineBundle\DoctrineBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::boot()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\DoctrineBundle\DoctrineBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::shutdown()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\DoctrineBundle\DoctrineBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::registerCommands()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\DoctrineBundle\DoctrineBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "PrestaShop\TranslationToolsBundle\TranslationToolsBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: The "PrestaShopBundle\Routing\AnonymousRouteProvider::warmUp()" method will require a new "string|null $buildDir" argument in the next major version of its interface "Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Contracts\Service\ResetInterface::reset()" might add "void" as a native return type declaration in the future. Do the same in implementation "PrestaShop\PrestaShop\Core\FeatureFlag\FeatureFlagManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\LanguageContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\EmployeeContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\ShopContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.4: "Symfony\Bridge\Doctrine\Logger\DbalLogger" is deprecated, use a middleware instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: DebugStack is deprecated. (DebugStack.php:41 called by AdminKernelDevDebugContainer.php:3398, https://github.com/doctrine/dbal/pull/4967, package doctrine/dbal)
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Doctrine\DBAL\Connection::getDatabasePlatform()" might add "AbstractPlatform" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\Doctrine\DatabaseConnection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Not configuring a schema manager factory is deprecated. Use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory which is going to be the default in DBAL 4. (Connection.php:227 called by DriverManager.php:197, https://github.com/doctrine/dbal/issues/5812, package doctrine/dbal)
{
    "exception": {}
}
INFO 05:44:46 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "127.0.0.1",
        "port": "",
        "dbname": "fmm_pre_compositeproduct",
        "user": "fmm_compositeproduct",
        "password": "<redacted>",
        "charset": "utf8mb4",
        "driverOptions": {
            "1002": "SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''))",
            "1013": false
        },
        "wrapperClass": "PrestaShopBundle\\Doctrine\\DatabaseConnection",
        "defaultTableOptions": []
    }
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaListener" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\MessengerTransportDoctrineSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaListener" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\DoctrineDbalCacheAdapterSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: The "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaSubscriber" class is deprecated. Use "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaListener" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Symfony\Bridge\Doctrine\SchemaListener\RememberMeTokenProviderDoctrineSchemaSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\CurrencyContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\CountryContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "b4eff1"
    },
    "request_uri": "https://compositeproduct.bestprestashopmodules.net/psadmin/_profiler/b4eff1",
    "method": "GET"
}
INFO 05:44:46 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/symfony 4.1: The "api_platform.validator.query_parameter_validator" service is deprecated use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\ParameterValidator" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\ArrayItems" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\Bounds" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\Enum" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\Length" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\MultipleOf" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\Pattern" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Since api-platform/core 3.4: The class "ApiPlatform\ParameterValidator\Validator\Required" is deprecated, use "\ApiPlatform\Metadata\Parameter::$constraints" instead.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:68 called by AdminKernelDevDebugContainer.php:5326, https://github.com/doctrine/orm/issues/10098, package doctrine/orm)
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode also with the AnnotationDriver today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AnnotationDriver.php:79 called by AdminKernelDevDebugContainer.php:5326, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Doctrine\ORM\Mapping\NamingStrategy::classToTableName()" might add "string" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Service\Database\DoctrineNamingStrategy" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Method "Doctrine\ORM\Mapping\NamingStrategy::joinTableName()" might add "string" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Service\Database\DoctrineNamingStrategy" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Doctrine\ORM\EntityManager::create() is deprecated. To bootstrap a DBAL connection, call Doctrine\DBAL\DriverManager::getConnection() instead. Use the constructor to create an instance of Doctrine\ORM\EntityManager. (EntityManager.php:1001 called by AdminKernelDevDebugContainer.php:3425, https://github.com/doctrine/orm/pull/9961, package doctrine/orm)
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Doctrine\DBAL\Connection::getEventManager is deprecated. (Connection.php:302 called by EntityManager.php:166, https://github.com/doctrine/dbal/issues/5784, package doctrine/dbal)
{
    "exception": {}
}
INFO 05:44:46 php User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:169 called by EntityManager.php:181, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
DEBUG 05:44:47 doctrine Executing statement: SELECT t0.id_lang AS id_lang_1, t0.name AS name_2, t0.active AS active_3, t0.iso_code AS iso_code_4, t0.language_code AS language_code_5, t0.locale AS locale_6, t0.date_format_lite AS date_format_lite_7, t0.date_format_full AS date_format_full_8, t0.is_rtl AS is_rtl_9 FROM ps_lang t0 WHERE t0.id_lang = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id_lang AS id_lang_1, t0.name AS name_2, t0.active AS active_3, t0.iso_code AS iso_code_4, t0.language_code AS language_code_5, t0.locale AS locale_6, t0.date_format_lite AS date_format_lite_7, t0.date_format_full AS date_format_full_8, t0.is_rtl AS is_rtl_9 FROM ps_lang t0 WHERE t0.id_lang = ?",
    "params": {
        "1": "1"
    },
    "types": {
        "1": 1
    }
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Validator\Constraint::getTargets()" might add "string|array" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\Translation\Constraints\PassVsprintf" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::eraseCredentials()" might add "void" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Entity\Employee\Employee" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 05:44:47 doctrine Executing query: SELECT s.id_shop FROM ps_shop s
{
    "sql": "SELECT s.id_shop FROM ps_shop s"
}
INFO 05:44:47 php User Deprecated: The "ApiPlatform\JsonSchema\ResourceMetadataTrait" trait is considered internal. It may change without further notice. You should not use it from "PrestaShopBundle\ApiPlatform\OpenApi\Factory\CQRSOpenApiFactory".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Since api-platform/core 3.4: Injecting the "ApiPlatform\JsonSchema\TypeFactoryInterface" inside "ApiPlatform\JsonSchema\SchemaFactory" is deprecated and "ApiPlatform\JsonSchema\TypeFactoryInterface" will be removed in 4.x.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer::supportsNormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\NormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DateTimeImmutableNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer::supportsNormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\NormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\DecimalNumberNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer::supportsNormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\NormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ShopConstraintNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer::supportsNormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\NormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\UploadedFileNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer::supportsDenormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\DenormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer::supportsNormalization()" method will require a new "array $context" argument in the next major version of its interface "Symfony\Component\Serializer\Normalizer\NormalizerInterface", not defining it is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Normalizer\ValueObjectNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "Symfony\Component\Serializer\Normalizer\ObjectNormalizer" class is considered final since Symfony 6.3. It may change without further notice as of its next major version. You should not extend it from "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::supportsDenormalization()" might add "bool" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::supportsNormalization()" might add "bool" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::instantiateObject()" might add "object" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::denormalizeParameter()" method is considered internal. It may change without further notice. You should not extend it from "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::createChildContext()" method is considered internal. It may change without further notice. You should not extend it from "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\ObjectNormalizer::setAttributeValue()" might add "void" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\ApiPlatform\Normalizer\CQRSApiNormalizer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" class implements "Symfony\Component\Serializer\Normalizer\ContextAwareNormalizerInterface" that is deprecated since symfony/serializer 6.1, use NormalizerInterface instead.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Class "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" should implement method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::getSupportedTypes(?string $format): array".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" class implements "Symfony\Component\Serializer\Normalizer\ContextAwareDenormalizerInterface" that is deprecated since symfony/serializer 6.1, use DenormalizerInterface instead.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Class "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" should implement method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::getSupportedTypes(?string $format): array".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Encoder\DecoderInterface::decode()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()" might add "array|string|int|float|bool|\ArrayObject|null" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\ApiPlatform\Serializer\CQRSApiSerializer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\Admin\Context\LegacyControllerContextSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\ContextIsoCodeProviderExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\ColorBrightnessCalculatorExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\DocumentationLinkExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\EntitySearchExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\GridExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getTests()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\GridExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\LocalizationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\Twig\Extension\NumberExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getTokenParsers()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getNodeVisitors()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getTests()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getOperators()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShop\TranslationToolsBundle\Twig\Extension\TranslationExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShop\TranslationToolsBundle\Twig\NodeVisitor\TranslationNodeVisitor" class extends "Twig\NodeVisitor\AbstractNodeVisitor" that is deprecated since Twig 3.9 (to be removed in 4.0).
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Twig\NodeVisitor\AbstractNodeVisitor::doEnterNode()" might add "Node" as a native return type declaration in the future. Do the same in child class "PrestaShop\TranslationToolsBundle\Twig\NodeVisitor\TranslationNodeVisitor" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Doctrine\ORM\Query\AST\Functions\FunctionNode::parse()" might add "void" as a native return type declaration in the future. Do the same in child class "DoctrineExtensions\Query\Mysql\Binary" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Doctrine\ORM\Query\AST\Functions\FunctionNode::getSql()" might add "string" as a native return type declaration in the future. Do the same in child class "DoctrineExtensions\Query\Mysql\Binary" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 05:44:47 doctrine Executing statement: SELECT p0_.id_tab AS id_tab_0, p0_.class_name AS class_name_1 FROM ps_tab p0_ WHERE p0_.class_name = BINARY(?) AND p0_.id_tab <> 0 (parameters: {params}, types: {types})
{
    "sql": "SELECT p0_.id_tab AS id_tab_0, p0_.class_name AS class_name_1 FROM ps_tab p0_ WHERE p0_.class_name = BINARY(?) AND p0_.id_tab <> 0",
    "params": {
        "1": "Admin"
    },
    "types": {
        "1": 2
    }
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::collect()" might add "void" as a native return type declaration in the future. Do the same in child class "Doctrine\Bundle\DoctrineBundle\DataCollector\DoctrineDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Since symfony/doctrine-bridge 6.4: Not passing an instance of "Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder" as "$debugDataHolder" to "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::__construct()" is deprecated.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Since symfony/doctrine-bridge 6.4: "Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::addLogger()" is deprecated. Pass an instance of "Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder" to the constructor instead.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector" class is considered final. It may change without further notice as of its next major version. You should not extend it from "PrestaShopBundle\DataCollector\ConfigDataCollector".
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::collect()" might add "void" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\DataCollector\HookDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollector::reset()" might add "void" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\DataCollector\HookDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\DataCollector\HookDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::collect()" might add "void" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\DataCollector\CommandsAndQueriesDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\DataCollector\CommandsAndQueriesDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\HttpKernel\DataCollector\DataCollector::reset()" might add "void" as a native return type declaration in the future. Do the same in child class "PrestaShopBundle\DataCollector\CommandsAndQueriesDataCollector" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "PrestaShopBundle\EventListener\ActionDispatcherLegacyHooksSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: The "PrestaShopBundle\Controller\ArgumentResolver\FiltersBuilderResolver" class implements "Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface" that is deprecated since Symfony 6.2, implement ValueResolverInterface instead.
{
    "exception": {}
}
INFO 05:44:47 php User Deprecated: Method "Doctrine\Common\Collections\Collection::set()" might add "void" as a native return type declaration in the future. Do the same in implementation "PrestaShop\PrestaShop\Core\Data\AbstractTypedCollection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}

Stack Trace

ErrorException
ErrorException:
Warning: Undefined array key "PHPSESSID"

  at modules/compositeproductbuilder/compositeproductbuilder.php:14
  at include_once('/home/bestprestashopmodules.net/subdomains/compositeproduct/modules/compositeproductbuilder/compositeproductbuilder.php')
     (classes/module/Module.php:1373)
  at ModuleCore::coreLoadModule()
     (classes/module/Module.php:1365)
  at ModuleCore::getInstanceByName()
     (classes/Hook.php:1109)
  at HookCore::exec()
     (classes/Dispatcher.php:584)
  at DispatcherCore->loadRoutes()
     (classes/Dispatcher.php:235)
  at DispatcherCore->__construct()
     (classes/Dispatcher.php:193)
  at DispatcherCore::getInstance()
     (classes/Link.php:700)
  at LinkCore->getModuleLink()
     (modules/ps_checkout/src/Routing/Router.php:69)
  at PrestaShop\Module\PrestashopCheckout\Routing\Router->getDispatchWebhookLink()
     (modules/ps_checkout/src/Builder/Configuration/CheckoutClientConfigurationBuilder.php:67)
  at PrestaShop\Module\PrestashopCheckout\Builder\Configuration\CheckoutClientConfigurationBuilder->build()
     (modules/ps_checkout/src/Http/CheckoutHttpClient.php:43)
  at PrestaShop\Module\PrestashopCheckout\Http\CheckoutHttpClient->__construct()
     (var/cache/dev/admin/ContainerUHkHj6S/getCheckoutHttpClientService.php:21)
  at ContainerUHkHj6S\getCheckoutHttpClientService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getOAuthServiceService.php:21)
  at ContainerUHkHj6S\getOAuthServiceService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getGetPayPalGetUserIdTokenQueryHandlerService.php:21)
  at ContainerUHkHj6S\getGetPayPalGetUserIdTokenQueryHandlerService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getQueryBusFactoryService.php:21)
  at ContainerUHkHj6S\getQueryBusFactoryService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getPsCheckout_Bus_QueryService.php:21)
  at ContainerUHkHj6S\getPsCheckout_Bus_QueryService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getCheckoutEventSubscriberService.php:21)
  at ContainerUHkHj6S\getCheckoutEventSubscriberService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/getPsCheckout_Event_Dispatcher_SymfonyService.php:21)
  at ContainerUHkHj6S\getPsCheckout_Event_Dispatcher_SymfonyService::do()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2639)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer->load()
     (var/cache/dev/admin/ContainerUHkHj6S/AdminKernelDevDebugContainer.php:2904)
  at ContainerUHkHj6S\AdminKernelDevDebugContainer::ContainerUHkHj6S\{closure}()
     (vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:68)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect()
     (vendor/symfony/http-kernel/Profiler/Profiler.php:100)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:260)
  at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (vendor/symfony/http-kernel/Kernel.php:157)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (psadmin/index.php:85)