Exceptions
Exception
Symfony\Component\Mailer\Exception\ TransportException
Show exception properties
Symfony\Component\Mailer\Exception\TransportException {#8656 -debug: """ < 220-vps-e3c0c3a9.vps.ovh.ca ESMTP Exim 4.98.2 #2 Sat, 05 Jul 2025 00:44:04 +0000 \r\n < 220-We do not authorize the use of this system to transport unsolicited, \r\n < 220 and/or bulk e-mail.\r\n > EHLO [127.0.0.1]\n < 250-vps-e3c0c3a9.vps.ovh.ca Hello [127.0.0.1] [::1]\r\n < 250-SIZE 52428800\r\n < 250-LIMITS MAILMAX=1000 RCPTMAX=50000\r\n < 250-8BITMIME\r\n < 250-PIPELINING\r\n < 250-PIPECONNECT\r\n < 250-AUTH PLAIN LOGIN\r\n < 250-STARTTLS\r\n < 250 HELP\r\n > STARTTLS\n < 220 TLS go ahead\r\n """ }
}
public function startTLS(): bool
{
set_error_handler(function ($type, $msg) {
throw new TransportException('Unable to connect with STARTTLS: '.$msg);
});
try {
return stream_socket_enable_crypto($this->stream, true);
} finally {
restore_error_handler();
SocketStream->Symfony\Component\Mailer\Transport\Smtp\Stream\{closure}(2, 'stream_socket_enable_crypto(): Peer certificate CN=`vps-e3c0c3a9.vps.ovh.ca\' did not match expected CN=`localhost\'', '/home/gestionecolecond/public_html/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php', 174)
in
vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php
stream_socket_enable_crypto
(line 174)
{
set_error_handler(function ($type, $msg) {
throw new TransportException('Unable to connect with STARTTLS: '.$msg);
});
try {
return stream_socket_enable_crypto($this->stream, true);
} finally {
restore_error_handler();
}
}
in
vendor/symfony/mailer/Transport/Smtp/EsmtpTransport.php
->
startTLS
(line 152)
// if you think that the ! should be removed, read the code again
// if doing so "fixes" your issue then it probably means your SMTP server behaves incorrectly or is wrongly configured
if (!$stream->isTLS() && \defined('OPENSSL_VERSION_NUMBER') && \array_key_exists('STARTTLS', $this->capabilities)) {
$this->executeCommand("STARTTLS\r\n", [220]);
if (!$stream->startTLS()) {
throw new TransportException('Unable to connect with STARTTLS.');
}
$response = $this->executeCommand(sprintf("EHLO %s\r\n", $this->getLocalDomain()), [250]);
$this->capabilities = $this->parseCapabilities($response);
in
vendor/symfony/mailer/Transport/Smtp/EsmtpTransport.php
->
doEhloCommand
(line 118)
$this->authenticators[] = $authenticator;
}
public function executeCommand(string $command, array $codes): string
{
return [250] === $codes && str_starts_with($command, 'HELO ') ? $this->doEhloCommand() : parent::executeCommand($command, $codes);
}
final protected function getCapabilities(): array
{
return $this->capabilities;
in
vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php
->
executeCommand
(line 254)
*
* @final since version 6.1, to be made private in 7.0
*/
protected function doHeloCommand(): void
{
$this->executeCommand(sprintf("HELO %s\r\n", $this->domain), [250]);
}
private function doMailFromCommand(string $address): void
{
$this->executeCommand(sprintf("MAIL FROM:<%s>\r\n", $address), [250]);
in
vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php
->
doHeloCommand
(line 277)
$this->getLogger()->debug(sprintf('Email transport "%s" starting', __CLASS__));
$this->stream->initialize();
$this->assertResponseCode($this->getFullResponse(), [220]);
$this->doHeloCommand();
$this->started = true;
$this->lastMessageTime = 0;
$this->getLogger()->debug(sprintf('Email transport "%s" started', __CLASS__));
}
in
vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php
->
start
(line 210)
$this->ping();
}
try {
if (!$this->started) {
$this->start();
}
$envelope = $message->getEnvelope();
$this->doMailFromCommand($envelope->getSender()->getEncodedAddress());
foreach ($envelope->getRecipients() as $recipient) {
in
vendor/symfony/mailer/Transport/AbstractTransport.php
->
doSend
(line 90)
}
$sentMessage = new SentMessage($message, $envelope);
try {
$this->doSend($sentMessage);
} catch (\Throwable $error) {
$this->dispatcher->dispatch(new FailedMessageEvent($message, $error));
$this->checkThrottling();
throw $error;
in
vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php
->
send
(line 137)
}
public function send(RawMessage $message, ?Envelope $envelope = null): ?SentMessage
{
try {
$message = parent::send($message, $envelope);
} catch (TransportExceptionInterface $e) {
if ($this->started) {
try {
$this->executeCommand("RSET\r\n", [250]);
} catch (TransportExceptionInterface) {
in
vendor/symfony/mailer/Transport/Transports.php
->
send
(line 51)
public function send(RawMessage $message, ?Envelope $envelope = null): ?SentMessage
{
/** @var Message $message */
if (RawMessage::class === $message::class || !$message->getHeaders()->has('X-Transport')) {
return $this->default->send($message, $envelope);
}
$headers = $message->getHeaders();
$transport = $headers->get('X-Transport')->getBody();
$headers->remove('X-Transport');
in
vendor/symfony/mailer/Messenger/MessageHandler.php
->
send
(line 31)
$this->transport = $transport;
}
public function __invoke(SendEmailMessage $message): ?SentMessage
{
return $this->transport->send($message->getMessage(), $message->getEnvelope());
}
}
in
vendor/symfony/messenger/Middleware/HandleMessageMiddleware.php
->
__invoke
(line 152)
}
if (null !== $handlerArgumentsStamp) {
$arguments = [...$arguments, ...$handlerArgumentsStamp->getAdditionalArguments()];
}
return $handler(...$arguments);
}
}
in
vendor/symfony/messenger/Middleware/HandleMessageMiddleware.php
->
callHandler
(line 91)
throw $ack->getError();
} else {
$result = $ack->getResult();
}
} else {
$result = $this->callHandler($handler, $message, null, $envelope->last(HandlerArgumentsStamp::class));
}
$handledStamp = HandledStamp::fromDescriptor($handlerDescriptor, $result);
$envelope = $envelope->with($handledStamp);
$this->logger?->info('Message {class} handled by {handler}', $context + ['handler' => $handledStamp->getHandlerName()]);
in
vendor/symfony/messenger/Middleware/SendMessageMiddleware.php
->
handle
(line 71)
throw new NoSenderForMessageException(sprintf('No sender for message "%s".', $context['class']));
}
}
if (null === $sender) {
return $stack->next()->handle($envelope, $stack);
}
// message should only be sent and not be handled by the next middleware
return $envelope;
}
in
vendor/symfony/doctrine-bridge/Messenger/DoctrineTransactionMiddleware.php
->
handle
(line 33)
{
$entityManager->getConnection()->beginTransaction();
$success = false;
try {
$envelope = $stack->next()->handle($envelope, $stack);
$entityManager->flush();
$entityManager->getConnection()->commit();
$success = true;
in
vendor/symfony/doctrine-bridge/Messenger/AbstractDoctrineMiddleware.php
->
handleForManager
(line 45)
$entityManager = $this->managerRegistry->getManager($this->entityManagerName);
} catch (\InvalidArgumentException $e) {
throw new UnrecoverableMessageHandlingException($e->getMessage(), 0, $e);
}
return $this->handleForManager($entityManager, $envelope, $stack);
}
abstract protected function handleForManager(EntityManagerInterface $entityManager, Envelope $envelope, StackInterface $stack): Envelope;
}
in
vendor/symfony/messenger/Middleware/ValidationMiddleware.php
->
handle
(line 45)
$violations = $this->validator->validate($message, null, $groups);
if (\count($violations)) {
throw new ValidationFailedException($message, $violations, $envelope);
}
return $stack->next()->handle($envelope, $stack);
}
}
in
vendor/symfony/messenger/Middleware/FailedMessageProcessingMiddleware.php
->
handle
(line 34)
// mark the message as "received" from the original transport
// this guarantees the same behavior as when originally received
$envelope = $envelope->with(new ReceivedStamp($sentToFailureStamp->getOriginalReceiverName()));
}
return $stack->next()->handle($envelope, $stack);
}
}
in
vendor/symfony/messenger/Middleware/DispatchAfterCurrentBusMiddleware.php
->
handle
(line 68)
// First time we get here, mark as inside a "root dispatch" call:
$this->isRootDispatchCallRunning = true;
try {
// Execute the whole middleware stack & message handling for main dispatch:
$returnedEnvelope = $stack->next()->handle($envelope, $stack);
} catch (\Throwable $exception) {
/*
* Whenever an exception occurs while handling a message that has
* queued other messages, we drop the queued ones.
* This is intentional since the queued commands were likely dependent
in
vendor/symfony/messenger/Middleware/RejectRedeliveredMessageMiddleware.php
->
handle
(line 41)
$amqpReceivedStamp = $envelope->last(AmqpReceivedStamp::class);
if ($amqpReceivedStamp instanceof AmqpReceivedStamp && $amqpReceivedStamp->getAmqpEnvelope()->isRedelivery()) {
throw new RejectRedeliveredMessageException('Redelivered message from AMQP detected that will be rejected and trigger the retry logic.');
}
return $stack->next()->handle($envelope, $stack);
}
}
in
vendor/symfony/messenger/Middleware/AddBusNameStampMiddleware.php
->
handle
(line 37)
{
if (null === $envelope->last(BusNameStamp::class)) {
$envelope = $envelope->with(new BusNameStamp($this->busName));
}
return $stack->next()->handle($envelope, $stack);
}
}
in
vendor/symfony/messenger/Middleware/TraceableMiddleware.php
->
handle
(line 40)
public function handle(Envelope $envelope, StackInterface $stack): Envelope
{
$stack = new TraceableStack($stack, $this->stopwatch, $this->busName, $this->eventCategory);
try {
return $stack->next()->handle($envelope, $stack);
} finally {
$stack->stop();
}
}
}
in
vendor/symfony/messenger/MessageBus.php
->
handle
(line 70)
if (!$middlewareIterator->valid()) {
return $envelope;
}
$stack = new StackMiddleware($middlewareIterator);
return $middlewareIterator->current()->handle($envelope, $stack);
}
}
in
vendor/symfony/messenger/TraceableMessageBus.php
->
dispatch
(line 38)
'caller' => $this->getCaller(),
'callTime' => microtime(true),
];
try {
return $envelope = $this->decoratedBus->dispatch($message, $stamps);
} catch (\Throwable $e) {
$context['exception'] = $e;
throw $e;
} finally {
in
vendor/symfony/mailer/Mailer.php
->
dispatch
(line 66)
return;
}
}
try {
$this->bus->dispatch(new SendEmailMessage($message, $envelope), $stamps);
} catch (HandlerFailedException $e) {
foreach ($e->getWrappedExceptions() as $nested) {
if ($nested instanceof TransportExceptionInterface) {
throw $nested;
}
in
vendor/sylius/mailer-bundle/src/Bundle/Sender/Adapter/SymfonyMailerAdapter.php
->
send
(line 120)
$emailSendEvent = new EmailSendEvent($message, $email, $data, $recipients, $replyTo);
$this->dispatcher?->dispatch($emailSendEvent, SyliusMailerEvents::EMAIL_PRE_SEND);
$this->mailer->send($message);
$this->dispatcher?->dispatch($emailSendEvent, SyliusMailerEvents::EMAIL_POST_SEND);
}
/**
in
vendor/sylius/mailer-bundle/src/Bundle/Sender/Adapter/SymfonyMailerAdapter.php
->
sendMessage
(line 48)
EmailInterface $email,
array $data,
array $attachments = [],
array $replyTo = [],
): void {
$this->sendMessage(
$renderedEmail,
$senderAddress,
$senderName,
$recipients,
$replyTo,
in
vendor/sylius/mailer-bundle/src/Component/Sender/Sender.php
->
send
(line 90)
);
return;
}
$this->senderAdapter->send(
$recipients,
$senderAddress,
$senderName,
$renderedEmail,
$email,
in
vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/EventListener/MailerListener.php
->
send
(line 95)
private function sendEmail(UserInterface $user, string $emailCode): void
{
$email = $user->getEmail();
Assert::notNull($email);
$this->emailSender->send(
$emailCode,
[$email],
[
'user' => $user,
'channel' => $this->channelContext->getChannel(),
in
vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/EventListener/MailerListener.php
->
sendEmail
(line 39)
) {
}
public function sendResetPasswordTokenEmail(GenericEvent $event): void
{
$this->sendEmail($event->getSubject(), UserBundleEmails::RESET_PASSWORD_TOKEN);
}
/** @deprecated since Sylius 1.14 and will be removed in Sylius 2.0. */
public function sendResetPasswordPinEmail(GenericEvent $event): void
{
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
sendResetPasswordTokenEmail
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php
->
dispatch
(line 313)
$manager = $this->container->get('doctrine.orm.default_entity_manager');
$manager->persist($user);
$manager->flush();
$dispatcher = $this->container->get('event_dispatcher');
$dispatcher->dispatch(new GenericEvent($user), $senderEvent);
}
protected function handleResetPassword(
Request $request,
RequestConfiguration $configuration,
in
vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php
->
handleResetPasswordRequest
(line 225)
/** @var UserRepositoryInterface $userRepository */
Assert::isInstanceOf($userRepository, UserRepositoryInterface::class);
$user = $userRepository->findOneByEmail($passwordReset->getEmail());
if (null !== $user) {
$this->handleResetPasswordRequest($generator, $user, $senderEvent);
}
if (!$configuration->isHtmlRequest()) {
return $this->viewHandler->handle($configuration, View::create(null, Response::HTTP_NO_CONTENT));
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php
->
prepareResetPasswordRequest
(line 73)
public function requestPasswordResetTokenAction(Request $request): Response
{
/** @var GeneratorInterface $generator */
$generator = $this->container->get(sprintf('sylius.%s.token_generator.password_reset', $this->metadata->getName()));
return $this->prepareResetPasswordRequest($request, $generator, UserEvents::REQUEST_RESET_PASSWORD_TOKEN);
}
/** @deprecated since Sylius 1.14 and will be removed in Sylius 2.0. */
public function requestPasswordResetPinAction(Request $request): Response
{
in
vendor/symfony/http-kernel/HttpKernel.php
->
requestPasswordResetTokenAction
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$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/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/gestionecolecond/public_html/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 14:44:00 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/sylius 1.14: The "Sylius\Bundle\CoreBundle\Twig\FilterExtension" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/shop-bundle 1.12: The "Sylius\Bundle\ShopBundle\Twig\OrderTaxesTotalExtension" class is deprecated and will be removed in Sylius 2.0. Use methods "getTaxExcludedTotal" and "getTaxIncludedTotal" from "Sylius\Component\Core\Model\Order" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/shop-bundle 1.13: The "Sylius\Bundle\ShopBundle\Twig\OrderItemsSubtotalExtension" class is deprecated and will be removed in Sylius 2.0. Use method "getItemsSubtotal" from "Sylius\Component\Core\Model\Order" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/shop-bundle 1.13: The "Sylius\Bundle\ShopBundle\Calculator\OrderItemsSubtotalCalculatorInterface" interface is deprecated and will be removed in Sylius 2.0, use method "getItemsSubtotal" from "Sylius\Component\Core\Model\OrderInterface" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/sylius 1.13: The "Sylius\Bundle\ShopBundle\Calculator\OrderItemsSubtotalCalculator" class is deprecated and will be removed in Sylius 2.0. Items subtotal calculations is now available by using Sylius\Component\Core\Model\Order::getSubtotalItems method. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/http-foundation 6.2: The "Symfony\Component\HttpFoundation\RequestMatcher" class is deprecated, use "Symfony\Component\HttpFoundation\ChainRequestMatcher" instead. { "exception": {} } |
INFO 14:44:00 | 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 today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by App_KernelDevDebugContainer.php:3791, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) { "exception": {} } |
INFO 14:44:00 | 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:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "api_platform.metadata.resource.metadata_factory.yaml" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\Factory\MergingExtractorResourceMetadataFactory" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\Metadata\Merger\LegacyResourceMetadataMerger" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\Metadata\Merger\LegacyResourceMetadataMerger" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\ResourceMetadataPropertyValueResolver" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\ResourceMetadataPropertyValueResolver" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\ApiResourceConfigurationMerger" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\ApiResourceConfigurationMerger" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataProvider\ChannelAwareItemDataProvider" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataProvider\ChannelAwareItemDataProvider" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\SerializerContextBuilder\ReadOperationContextBuilder" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\SerializerContextBuilder\ReadOperationContextBuilder" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.14: The "sylius.theme.context.channel_based" service is deprecated and will be moved to the ShopBundle in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.14: The "Sylius\Bundle\CoreBundle\Theme\ChannelBasedThemeContext" class is deprecated and will be moved to the ShopBundle in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. { "exception": {} } |
INFO 14:44:00 | 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 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: The listener "ApiPlatform\Core\EventListener\ReadListener" is deprecated and will be replaced by "ApiPlatform\Symfony\EventListener\ReadListener" in 3.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: The $exceptionOnNoToken parameter in "ApiPlatform\Symfony\Security\ResourceAccessChecker::__construct()" is deprecated and will always be false in 3.0, you should stop using it. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Using "api_platform.iri_converter.legacy" is deprecated since API Platform 2.7. Use "ApiPlatform\Api\IriConverterInterface" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "api_platform.route_name_resolver" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "api_platform.route_name_resolver.cached.inner" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\Bridge\Symfony\Routing\RouteNameResolver" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\ApiPlatform\Bridge\Symfony\Routing\CachedRouteNameResolver" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "sylius.api.data_transformer.command_aware_input_data_transformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\CommandAwareInputDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\OrderTokenValueAwareInputCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\OrderTokenValueAwareInputCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\CommandDataTransformerInterface" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\ShipmentIdAwareInputCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\ShipmentIdAwareInputCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInShopUserIdAwareCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInShopUserIdAwareCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\ChannelCodeAwareInputCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\ChannelCodeAwareInputCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInCustomerEmailIfNotSetAwareCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInCustomerEmailIfNotSetAwareCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInCustomerEmailAwareCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LoggedInCustomerEmailAwareCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LocaleCodeAwareInputCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\LocaleCodeAwareInputCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\SubresourceIdAwareCommandDataTransformer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\DataTransformer\SubresourceIdAwareCommandDataTransformer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: The DataTransformer pattern is deprecated, use a Provider or a Processor and either use your input or return a new output there. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\Validator\ResourceInputDataPropertiesValidatorInterface" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\Validator\ResourceApiInputDataPropertiesValidator" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\Validator\ResourceInputDataPropertiesValidatorInterface" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | doctrine |
Connecting with parameters {params} { "params": { "driver": "pdo_mysql", "idle_connection_ttl": 600, "host": "127.0.0.1", "port": null, "user": "gestione_bd", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": { "collation": "utf8mb4_unicode_ci" }, "dbname": "gestione_bd", "charset": "utf8mb4" } } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sylius\Bundle\AttributeBundle\Doctrine\ORM\Subscriber\LoadMetadataSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sylius\Bundle\ReviewBundle\Doctrine\ORM\Subscriber\LoadMetadataSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Annotations support is deprecated, migrate your application to use attributes and pass an instance of Gedmo\Mapping\Driver\AttributeReader to the Gedmo\Mapping\MappedEventSubscriber::setAnnotationReader() method instead. (MappedEventSubscriber.php:196 called by getStofDoctrineExtensions_Listener_LoggableService.php:30, https://github.com/doctrine-extensions/DoctrineExtensions/pull/2772, package gedmo/doctrine-extensions) { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\Serializer\FlattenExceptionNormalizer" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/api-bundle 1.14: The "Sylius\Bundle\ApiBundle\Serializer\FlattenExceptionNormalizer" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: The DataTransformer pattern is deprecated, use a Provider or a Processor and either use your input or return a new output there. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface". { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\Storage\FilterStorage is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Storage\FilterStorage" class is deprecated and will be removed in Sylius 2.0. Use Sylius\Bundle\GridBundle\Storage\SessionFilterStorage from sylius/grid-bundle version 1.13 or later instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Storage\FilterStorage" class is deprecated and will be removed in Sylius 2.0. Use Sylius\Bundle\GridBundle\Storage\FilterStorageInterface from sylius/grid-bundle version 1.13 or later instead. { "exception": {} } |
INFO 14:44:00 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "9472c1" }, "request_uri": "https://gestion.ecoleconduitevachon.com/_profiler/9472c1?panel=exception&type=request", "method": "GET" } |
DEBUG 14:44:00 | security |
Checking for authenticator support. { "firewall_name": "shop", "authenticators": 2 } |
DEBUG 14:44:00 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 14:44:00 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 14:44:00 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 14:44:00 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 14:44:00 | doctrine |
Executing statement: SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.default_locale_id AS default_locale_id_18, t19.code AS code_20, t19.created_at AS created_at_21, t19.updated_at AS updated_at_22, t19.id AS id_23, t0.base_currency_id AS base_currency_id_24, t25.code AS code_26, t25.created_at AS created_at_27, t25.updated_at AS updated_at_28, t25.id AS id_29, t0.default_tax_zone_id AS default_tax_zone_id_30, t0.menu_taxon_id AS menu_taxon_id_31, t0.shop_billing_data_id AS shop_billing_data_id_32, t0.channel_price_history_config_id AS channel_price_history_config_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t19 ON t0.default_locale_id = t19.id INNER JOIN sylius_currency t25 ON t0.base_currency_id = t25.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.code AS code_1, t0.name AS name_2, t0.color AS color_3, t0.description AS description_4, t0.enabled AS enabled_5, t0.hostname AS hostname_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.id AS id_9, t0.theme_name AS theme_name_10, t0.tax_calculation_strategy AS tax_calculation_strategy_11, t0.contact_email AS contact_email_12, t0.contact_phone_number AS contact_phone_number_13, t0.skipping_shipping_step_allowed AS skipping_shipping_step_allowed_14, t0.skipping_payment_step_allowed AS skipping_payment_step_allowed_15, t0.account_verification_required AS account_verification_required_16, t0.shipping_address_in_checkout_required AS shipping_address_in_checkout_required_17, t0.default_locale_id AS default_locale_id_18, t19.code AS code_20, t19.created_at AS created_at_21, t19.updated_at AS updated_at_22, t19.id AS id_23, t0.base_currency_id AS base_currency_id_24, t25.code AS code_26, t25.created_at AS created_at_27, t25.updated_at AS updated_at_28, t25.id AS id_29, t0.default_tax_zone_id AS default_tax_zone_id_30, t0.menu_taxon_id AS menu_taxon_id_31, t0.shop_billing_data_id AS shop_billing_data_id_32, t0.channel_price_history_config_id AS channel_price_history_config_id_33 FROM sylius_channel t0 INNER JOIN sylius_locale t19 ON t0.default_locale_id = t19.id INNER JOIN sylius_currency t25 ON t0.base_currency_id = t25.id WHERE t0.hostname = ? AND t0.enabled = ? ORDER BY t0.id ASC LIMIT 1", "params": { "1": "gestion.ecoleconduitevachon.com", "2": 1 }, "types": { "1": 2, "2": 5 } } |
DEBUG 14:44:00 | doctrine |
Executing statement: SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.code AS code_1, t0.created_at AS created_at_2, t0.updated_at AS updated_at_3, t0.id AS id_4 FROM sylius_locale t0 INNER JOIN sylius_channel_locales ON t0.id = sylius_channel_locales.locale_id WHERE sylius_channel_locales.channel_id = ?", "params": { "1": 1 }, "types": { "1": 1 } } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 14:44:00 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service sylius.twig.extension.form_test_attribute_array is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Twig\TestFormAttributeExtension" class is deprecated and will be removed in Sylius 2.0. Use sylius/twig-extra package instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service sylius.twig.extension.form_test_attribute_name is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Twig\TestFormAttributeExtension" class is deprecated and will be removed in Sylius 2.0. Use sylius/twig-extra package instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service sylius.twig.extension.sort_by is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Twig\TestFormAttributeExtension" class is deprecated and will be removed in Sylius 2.0. Use sylius/twig-extra package instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service sylius.twig.extension.template_event is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateEventRenderer is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateEventRenderer is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateEventRenderer.inner is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateBlockRenderer is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateBlockRenderer is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateBlockRenderer.inner is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\TwigTemplateBlockRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\TemplateBlockRendererInterface" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateBlockRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TemplateBlockRenderingHistory is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\DataCollector\TemplateBlockRenderingHistory" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateBlockRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\DelegatingTemplateEventRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\TemplateEventRendererInterface" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\Registry\TemplateBlockRegistryInterface is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Registry\TemplateBlock" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Registry\TemplateBlockRegistry" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Registry\TemplateBlockRegistryInterface" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateEventRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateEventRenderer" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Twig\TemplateEventExtension" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\Twig\LegacySonataBlockExtension is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\Twig\LegacySonataBlockExtension" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.14: The "sylius.templating.helper.product_variants_prices" is deprecated since Sylius 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/templating 6.4: "Symfony\Component\Templating\Helper\Helper" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since symfony/templating 6.4: "Symfony\Component\Templating\Helper\HelperInterface" is deprecated since version 6.4 and will be removed in 7.0. Use Twig instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core 1.13: The "Sylius\Component\Core\Provider\ProductVariantsPricesProviderInterface" class is deprecated, use "Sylius\Component\Core\Provider\ProductVariantMap\ProductVariantsMapProviderInterface" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.13: The "Sylius\Component\Core\Provider\ProductVariantsPricesProvider" class is deprecated and will be removed in Sylius 2.0. Use "Sylius\Component\Core\Provider\ProductVariantMap\ProductVariantsMapProvider" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.13: The "Sylius\Bundle\CoreBundle\Templating\Helper\ProductVariantsPricesHelper" class is deprecated and will be removed in Sylius 2.0. Use "Sylius\Component\Core\Provider\ProductVariantMap\ProductVariantsMapProvider" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/core-bundle 1.13: The "Sylius\Bundle\CoreBundle\Twig\ProductVariantsPricesExtension" class is deprecated and will be removed in Sylius 2.0. Use "Sylius\Bundle\CoreBundle\Twig\ProductVariantsMapExtension" instead. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/admin-bundle 1.14: The "sylius.twig.extension.widget.admin_notification" service is deprecated since 1.14 and will be removed in 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/admin-bundle 1.14: The "Sylius\Bundle\AdminBundle\Twig\NotificationWidgetExtension" class is deprecated and will be removed in Sylius 2.0. { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The service Sylius\Bundle\UiBundle\DataCollector\TemplateBlockDataCollector is deprecated and will be removed in Sylius 2.0." { "exception": {} } |
INFO 14:44:00 | php |
User Deprecated: Since sylius/ui-bundle 1.14: The "Sylius\Bundle\UiBundle\DataCollector\TemplateBlockDataCollector" class is deprecated and will be removed in Sylius 2.0 { "exception": {} } |
DEBUG 14:44:00 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:44:00 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:44:00 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:44:00 | 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 14:44:00 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:44:00 | event |
Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:44:01 | 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 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ChannelBundle\Context\FakeChannel\FakeChannelPersister::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ChannelBundle\\Context\\FakeChannel\\FakeChannelPersister::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:44:01 | 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 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ChannelBundle\Context\FakeChannel\FakeChannelPersister::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ChannelBundle\\Context\\FakeChannel\\FakeChannelPersister::onKernelResponse" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 14:44:01 | event |
Notified event "kernel.finish_request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 14:44:01 | 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 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 14:44:01 | event |
Notified event "kernel.controller_arguments" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::onControllerArguments" } |
Stack Trace
TransportException
|
---|
Symfony\Component\Mailer\Exception\TransportException: Unable to connect with STARTTLS: stream_socket_enable_crypto(): Peer certificate CN=`vps-e3c0c3a9.vps.ovh.ca' did not match expected CN=`localhost' at vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:171 at Symfony\Component\Mailer\Transport\Smtp\Stream\SocketStream->Symfony\Component\Mailer\Transport\Smtp\Stream\{closure}(2, 'stream_socket_enable_crypto(): Peer certificate CN=`vps-e3c0c3a9.vps.ovh.ca\' did not match expected CN=`localhost\'', '/home/gestionecolecond/public_html/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php', 174) at stream_socket_enable_crypto(resource, true) (vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:174) at Symfony\Component\Mailer\Transport\Smtp\Stream\SocketStream->startTLS() (vendor/symfony/mailer/Transport/Smtp/EsmtpTransport.php:152) at Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport->doEhloCommand() (vendor/symfony/mailer/Transport/Smtp/EsmtpTransport.php:118) at Symfony\Component\Mailer\Transport\Smtp\EsmtpTransport->executeCommand('HELO [127.0.0.1] ', array(250)) (vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php:254) at Symfony\Component\Mailer\Transport\Smtp\SmtpTransport->doHeloCommand() (vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php:277) at Symfony\Component\Mailer\Transport\Smtp\SmtpTransport->start() (vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php:210) at Symfony\Component\Mailer\Transport\Smtp\SmtpTransport->doSend(object(SentMessage)) (vendor/symfony/mailer/Transport/AbstractTransport.php:90) at Symfony\Component\Mailer\Transport\AbstractTransport->send(object(Email), object(DelayedEnvelope)) (vendor/symfony/mailer/Transport/Smtp/SmtpTransport.php:137) at Symfony\Component\Mailer\Transport\Smtp\SmtpTransport->send(object(Email), null) (vendor/symfony/mailer/Transport/Transports.php:51) at Symfony\Component\Mailer\Transport\Transports->send(object(Email), null) (vendor/symfony/mailer/Messenger/MessageHandler.php:31) at Symfony\Component\Mailer\Messenger\MessageHandler->__invoke(object(SendEmailMessage)) (vendor/symfony/messenger/Middleware/HandleMessageMiddleware.php:152) at Symfony\Component\Messenger\Middleware\HandleMessageMiddleware->callHandler(object(Closure), object(SendEmailMessage), null, null) (vendor/symfony/messenger/Middleware/HandleMessageMiddleware.php:91) at Symfony\Component\Messenger\Middleware\HandleMessageMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/SendMessageMiddleware.php:71) at Symfony\Component\Messenger\Middleware\SendMessageMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/doctrine-bridge/Messenger/DoctrineTransactionMiddleware.php:33) at Symfony\Bridge\Doctrine\Messenger\DoctrineTransactionMiddleware->handleForManager(object(EntityManagerGhostEbeb667), object(Envelope), object(TraceableStack)) (vendor/symfony/doctrine-bridge/Messenger/AbstractDoctrineMiddleware.php:45) at Symfony\Bridge\Doctrine\Messenger\AbstractDoctrineMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/ValidationMiddleware.php:45) at Symfony\Component\Messenger\Middleware\ValidationMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/FailedMessageProcessingMiddleware.php:34) at Symfony\Component\Messenger\Middleware\FailedMessageProcessingMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/DispatchAfterCurrentBusMiddleware.php:68) at Symfony\Component\Messenger\Middleware\DispatchAfterCurrentBusMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/RejectRedeliveredMessageMiddleware.php:41) at Symfony\Component\Messenger\Middleware\RejectRedeliveredMessageMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/AddBusNameStampMiddleware.php:37) at Symfony\Component\Messenger\Middleware\AddBusNameStampMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/Middleware/TraceableMiddleware.php:40) at Symfony\Component\Messenger\Middleware\TraceableMiddleware->handle(object(Envelope), object(TraceableStack)) (vendor/symfony/messenger/MessageBus.php:70) at Symfony\Component\Messenger\MessageBus->dispatch(object(SendEmailMessage), array()) (vendor/symfony/messenger/TraceableMessageBus.php:38) at Symfony\Component\Messenger\TraceableMessageBus->dispatch(object(SendEmailMessage), array()) (vendor/symfony/mailer/Mailer.php:66) at Symfony\Component\Mailer\Mailer->send(object(Email)) (vendor/sylius/mailer-bundle/src/Bundle/Sender/Adapter/SymfonyMailerAdapter.php:120) at Sylius\Bundle\MailerBundle\Sender\Adapter\SymfonyMailerAdapter->sendMessage(object(RenderedEmail), 'no-reply@example.com', 'Example.com', array('claravachon25@hotmail.com'), array(), array(), object(Email), array('user' => object(ShopUser), 'channel' => object(Channel), 'localeCode' => 'fr_CA')) (vendor/sylius/mailer-bundle/src/Bundle/Sender/Adapter/SymfonyMailerAdapter.php:48) at Sylius\Bundle\MailerBundle\Sender\Adapter\SymfonyMailerAdapter->send(array('claravachon25@hotmail.com'), 'no-reply@example.com', 'Example.com', object(RenderedEmail), object(Email), array('user' => object(ShopUser), 'channel' => object(Channel), 'localeCode' => 'fr_CA'), array(), array()) (vendor/sylius/mailer-bundle/src/Component/Sender/Sender.php:90) at Sylius\Component\Mailer\Sender\Sender->send('reset_password_token', array('claravachon25@hotmail.com'), array('user' => object(ShopUser), 'channel' => object(Channel), 'localeCode' => 'fr_CA')) (vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/EventListener/MailerListener.php:95) at Sylius\Bundle\CoreBundle\EventListener\MailerListener->sendEmail(object(ShopUser), 'reset_password_token') (vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/EventListener/MailerListener.php:39) at Sylius\Bundle\CoreBundle\EventListener\MailerListener->sendResetPasswordTokenEmail(object(GenericEvent), 'sylius.user.password_reset.request.token', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(GenericEvent), 'sylius.user.password_reset.request.token', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'sylius.user.password_reset.request.token', object(GenericEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(GenericEvent), 'sylius.user.password_reset.request.token') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(GenericEvent), 'sylius.user.password_reset.request.token') (vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php:313) at Sylius\Bundle\UserBundle\Controller\UserController->handleResetPasswordRequest(object(UniqueTokenGenerator), object(ShopUser), 'sylius.user.password_reset.request.token') (vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php:225) at Sylius\Bundle\UserBundle\Controller\UserController->prepareResetPasswordRequest(object(Request), object(UniqueTokenGenerator), 'sylius.user.password_reset.request.token') (vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Controller/UserController.php:73) at Sylius\Bundle\UserBundle\Controller\UserController->requestPasswordResetTokenAction(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:181) 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/symfony/http-kernel/Kernel.php:197) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/gestionecolecond/public_html/vendor/autoload_runtime.php') (public/index.php:5) |