Exceptions
Exceptions 2
Twig\Error\ RuntimeError
Show exception properties
Twig\Error\RuntimeError {#32137 -lineno: 6 -rawMessage: "An exception has been thrown during the rendering of a template ("Expected a scalar value as a 2nd argument to "Symfony\Component\HttpFoundation\InputBag::get()", "array" given.")." -source: Twig\Source {#32138 -code: """ {% if resources.data.nbResults > 0 %}\r\n \r\n {% set route = app.request.attributes.get('_route') %}\r\n {% set route_parameters = app.request.attributes.get('_route_params')|merge(app.request.query.all) %}\r\n \r\n {% set criteria = app.request.query.get('criteria', {}) %}\r\n \r\n {% set default_path = path(route, route_parameters|merge({'sorting': null, 'criteria': criteria})) %}\r\n {% set from_a_to_z_path = path(route, route_parameters|merge({'sorting': {'name': 'asc'}, 'criteria': criteria})) %}\r\n {% set from_z_to_a_path = path(route, route_parameters|merge({'sorting': {'name': 'desc'}, 'criteria': criteria})) %}\r\n {% set oldest_first_path = path(route, route_parameters|merge({'sorting': {'createdAt': 'asc'}, 'criteria': criteria})) %}\r\n {% set newest_first_path = path(route, route_parameters|merge({'sorting': {'createdAt': 'desc'}, 'criteria': criteria})) %}\r\n {% set cheapest_first_path = path(route, route_parameters|merge({'sorting': {'price': 'asc'}, 'criteria': criteria})) %}\r\n {% set most_expensive_first_path = path(route, route_parameters|merge({'sorting': {'price': 'desc'}, 'criteria': criteria})) %}\r\n \r\n {% if app.request.query.get('sorting') is empty %}\r\n {% set current_sorting_label = 'sylius.ui.by_position'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').name is defined and app.request.query.get('sorting').name == 'asc'%}\r\n {% set current_sorting_label = 'sylius.ui.from_a_to_z'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').name is defined and app.request.query.get('sorting').name == 'desc'%}\r\n {% set current_sorting_label = 'sylius.ui.from_z_to_a'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').createdAt is defined and app.request.query.get('sorting').createdAt == 'desc'%}\r\n {% set current_sorting_label = 'sylius.ui.newest_first'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').createdAt is defined and app.request.query.get('sorting').createdAt == 'asc'%}\r\n {% set current_sorting_label = 'sylius.ui.oldest_first'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').price is defined and app.request.query.get('sorting').price == 'asc'%}\r\n {% set current_sorting_label = 'sylius.ui.cheapest_first'|trans|lower %}\r\n {% elseif app.request.query.get('sorting').price is defined and app.request.query.get('sorting').price == 'desc' %}\r\n {% set current_sorting_label = 'sylius.ui.most_expensive_first'|trans|lower %}\r\n {% endif %}\r\n \r\n <div class="ui right floated small header">\r\n <div class="content">\r\n {{ 'sylius.ui.sort'|trans }}\r\n <div class="ui inline dropdown">\r\n <div class="text">{{ current_sorting_label }}</div>\r\n <i class="dropdown icon"></i>\r\n <div class="menu">\r\n <a class="item" href="{{ default_path }}" data-text="{{ 'sylius.ui.by_position'|trans|lower }}">{{ 'sylius.ui.by_position'|trans }}</a>\r\n <a class="item" href="{{ from_a_to_z_path }}" data-text="{{ 'sylius.ui.from_a_to_z'|trans|lower }}">{{ 'sylius.ui.from_a_to_z'|trans }}</a>\r\n <a class="item" href="{{ from_z_to_a_path }}" data-text="{{ 'sylius.ui.from_z_to_a'|trans|lower }}">{{ 'sylius.ui.from_z_to_a'|trans }}</a>\r\n <a class="item" href="{{ newest_first_path }}" data-text="{{ 'sylius.ui.newest_first'|trans|lower }}">{{ 'sylius.ui.newest_first'|trans }}</a>\r\n <a class="item" href="{{ oldest_first_path }}" data-text="{{ 'sylius.ui.oldest_first'|trans|lower }}">{{ 'sylius.ui.oldest_first'|trans }}</a>\r\n <a class="item" href="{{ cheapest_first_path }}" data-text="{{ 'sylius.ui.cheapest_first'|trans|lower }}">{{ 'sylius.ui.cheapest_first'|trans }}</a>\r\n <a class="item" href="{{ most_expensive_first_path }}" data-text="{{ 'sylius.ui.most_expensive_first'|trans|lower }}">{{ 'sylius.ui.most_expensive_first'|trans }}</a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n {% endif %}\r\n """ -name: "@SyliusShop/Product/Index/_sorting.html.twig" -path: "/home/gestionecolecond/public_html/themes/vachon/templates/bundles/SyliusShopBundle/Product/Index/_sorting.html.twig" } -phpFile: "/home/gestionecolecond/public_html/vendor/twig/twig/src/Template.php" -phpLine: 416 }
{% if resources.data.nbResults > 0 %}
{% set route = app.request.attributes.get('_route') %}
{% set route_parameters = app.request.attributes.get('_route_params')|merge(app.request.query.all) %}
{% set criteria = app.request.query.get('criteria', {}) %}
{% set default_path = path(route, route_parameters|merge({'sorting': null, 'criteria': criteria})) %}
{% set from_a_to_z_path = path(route, route_parameters|merge({'sorting': {'name': 'asc'}, 'criteria': criteria})) %}
{% set from_z_to_a_path = path(route, route_parameters|merge({'sorting': {'name': 'desc'}, 'criteria': criteria})) %}
{% set oldest_first_path = path(route, route_parameters|merge({'sorting': {'createdAt': 'asc'}, 'criteria': criteria})) %}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;
}
public function display(array $context, array $blocks = []): void
{
foreach ($this->yield($context, $blocks) as $data) {
echo $data;
}
}
public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
/**
* @return void
*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/TwigTemplateBlockRenderer.php
->
render
(line 42)
}
$context = $contextProvider->provide($context, $templateBlock);
}
return $this->twig->render($templateBlock->getTemplate(), $context);
}
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateBlockRenderer.php
->
render
(line 38)
public function render(TemplateBlock $templateBlock, array $context = []): string
{
$this->templateBlockRenderingHistory->startRenderingBlock($templateBlock, $context);
$renderedBlock = $this->templateBlockRenderer->render($templateBlock, $context);
$this->templateBlockRenderingHistory->stopRenderingBlock($templateBlock, $context);
return $renderedBlock;
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateBlockRenderer.php
->
render
(line 46)
$templateBlock->getTemplate(),
$templateBlock->getPriority(),
);
}
$renderedParts[] = $this->templateBlockRenderer->render($templateBlock, $context);
if ($shouldRenderHtmlDebug) {
$renderedParts[] = sprintf(
'<!-- END BLOCK | event name: "%s", block name: "%s" -->',
$templateBlock->getEventName(),
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/DelegatingTemplateEventRenderer.php
->
render
(line 36)
{
$templateBlocks = $this->templateBlockRegistry->findEnabledForEvents($eventNames);
$renderedTemplates = [];
foreach ($templateBlocks as $templateBlock) {
$renderedTemplates[] = $this->templateBlockRenderer->render($templateBlock, $context);
}
return implode("\n", $renderedTemplates);
}
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateEventRenderer.php
->
render
(line 37)
public function render(array $eventNames, array $context = []): string
{
$this->templateBlockRenderingHistory->startRenderingEvent($eventNames, $context);
$renderedEvent = $this->templateEventRenderer->render($eventNames, $context);
$this->templateBlockRenderingHistory->stopRenderingEvent($eventNames, $context);
return $renderedEvent;
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateEventRenderer.php
->
render
(line 46)
'<!-- BEGIN EVENT | event name: "%s" -->',
implode(', ', $eventNames),
);
}
$renderedParts[] = $this->templateEventRenderer->render($eventNames, $context);
if ($shouldRenderHtmlDebug) {
$renderedParts[] = sprintf(
'<!-- END EVENT | event name: "%s" -->',
implode(', ', $eventNames),
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Twig/TemplateEventExtension.php
->
render
(line 50)
if (is_string($eventName)) {
$eventName = [$eventName];
}
Assert::notEmpty($eventName);
return $this->templateEventRenderer->render($eventName, $context);
}
}
in
var/cache/dev/twig/59/59f7e9119a7b6ce704305b6b39011a7c.php
->
render
(line 55)
$macros["pagination"] = $this->macros["pagination"] = $this->load("@SyliusUi/Macro/pagination.html.twig", 2)->unwrap();
// line 3
yield "
";
// line 4
yield $this->extensions['Sylius\Bundle\UiBundle\Twig\TemplateEventExtension']->render("sylius.shop.product.index.search", $context);
yield "
<div class=\"ui clearing hidden divider\"></div>
";
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php
->
yield
(line 92)
// line 10
yield "\t\t\t\t</div>
\t\t\t\t<div class=\"twelve wide column\">
\t\t\t\t\t";
// line 12
yield from $this->load("@SyliusShop/Product/Index/_main.html.twig", 12)->unwrap()->yield($context);
// line 13
yield "\t\t\t\t</div>
\t\t\t</div>
\t\t</div>
\t</div>
in
vendor/twig/twig/src/Template.php
->
block_content
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
yield from $template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/4b/4b276f5117300435dcf600880972af90.php
->
yieldBlock
(line 327)
\t\t\t</div>
\t\t</div>
\t\t<div class=\"pusher\">
\t\t\t<div id=\"content\" class=\"ui segment\"> ";
// line 148
yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
// line 149
yield "\t\t\t\t</div>
\t\t\t</div>
\t\t</div>
\t\t";
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php
->
yield
(line 53)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@SyliusShop/Product/index.html.twig"));
$this->parent = $this->load("@SyliusShop/layout.html.twig", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;
}
public function display(array $context, array $blocks = []): void
{
foreach ($this->yield($context, $blocks) as $data) {
echo $data;
}
}
public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
/**
* @return void
*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/sylius/resource-bundle/src/Bundle/Controller/ControllerTrait.php
->
render
(line 247)
if ($this->container->has('templating')) {
@trigger_error('Using the "templating" service is deprecated since Symfony 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
$content = $this->container->get('templating')->render($view, $parameters);
} elseif ($this->container->has('twig')) {
$content = $this->container->get('twig')->render($view, $parameters);
} else {
throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
}
if (null === $response) {
in
vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php
->
render
(line 150)
if (null !== $eventResponse) {
return $eventResponse;
}
if ($configuration->isHtmlRequest()) {
return $this->render($configuration->getTemplate(ResourceActions::INDEX . '.html'), [
'configuration' => $configuration,
'metadata' => $this->metadata,
'resources' => $resources,
$this->metadata->getPluralName() => $resources,
]);
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(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']);
};
InvalidArgumentException
in
vendor/symfony/http-foundation/InputBag.php
(line 32)
* @param string|int|float|bool|null $default The default value if the input key does not exist
*/
public function get(string $key, mixed $default = null): string|int|float|bool|null
{
if (null !== $default && !\is_scalar($default) && !$default instanceof \Stringable) {
throw new \InvalidArgumentException(sprintf('Expected a scalar value as a 2nd argument to "%s()", "%s" given.', __METHOD__, get_debug_type($default)));
}
$value = parent::get($key, $this);
if (null !== $value && $this !== $value && !\is_scalar($value) && !$value instanceof \Stringable) {
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
get
(line 1909)
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
$ret = $object->$method(...$arguments);
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
return;
}
throw $e;
in
var/cache/dev/twig/1c/1c7191f59c6c1b85d624e7aec52cadca.php
::
getAttribute
(line 60)
$context["route_parameters"] = Twig\Extension\CoreExtension::merge(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 4, $this->source); })()), "request", [], "any", false, false, false, 4), "attributes", [], "any", false, false, false, 4), "get", ["_route_params"], "method", false, false, false, 4), CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 4, $this->source); })()), "request", [], "any", false, false, false, 4), "query", [], "any", false, false, false, 4), "all", [], "any", false, false, false, 4));
// line 5
yield "
";
// line 6
$context["criteria"] = CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 6, $this->source); })()), "request", [], "any", false, false, false, 6), "query", [], "any", false, false, false, 6), "get", ["criteria", []], "method", false, false, false, 6);
// line 7
yield "
";
// line 8
$context["default_path"] = $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath((isset($context["route"]) || array_key_exists("route", $context) ? $context["route"] : (function () { throw new RuntimeError('Variable "route" does not exist.', 8, $this->source); })()), Twig\Extension\CoreExtension::merge((isset($context["route_parameters"]) || array_key_exists("route_parameters", $context) ? $context["route_parameters"] : (function () { throw new RuntimeError('Variable "route_parameters" does not exist.', 8, $this->source); })()), ["sorting" => null, "criteria" => (isset($context["criteria"]) || array_key_exists("criteria", $context) ? $context["criteria"] : (function () { throw new RuntimeError('Variable "criteria" does not exist.', 8, $this->source); })())]));
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;
}
public function display(array $context, array $blocks = []): void
{
foreach ($this->yield($context, $blocks) as $data) {
echo $data;
}
}
public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
/**
* @return void
*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/TwigTemplateBlockRenderer.php
->
render
(line 42)
}
$context = $contextProvider->provide($context, $templateBlock);
}
return $this->twig->render($templateBlock->getTemplate(), $context);
}
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateBlockRenderer.php
->
render
(line 38)
public function render(TemplateBlock $templateBlock, array $context = []): string
{
$this->templateBlockRenderingHistory->startRenderingBlock($templateBlock, $context);
$renderedBlock = $this->templateBlockRenderer->render($templateBlock, $context);
$this->templateBlockRenderingHistory->stopRenderingBlock($templateBlock, $context);
return $renderedBlock;
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateBlockRenderer.php
->
render
(line 46)
$templateBlock->getTemplate(),
$templateBlock->getPriority(),
);
}
$renderedParts[] = $this->templateBlockRenderer->render($templateBlock, $context);
if ($shouldRenderHtmlDebug) {
$renderedParts[] = sprintf(
'<!-- END BLOCK | event name: "%s", block name: "%s" -->',
$templateBlock->getEventName(),
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/DelegatingTemplateEventRenderer.php
->
render
(line 36)
{
$templateBlocks = $this->templateBlockRegistry->findEnabledForEvents($eventNames);
$renderedTemplates = [];
foreach ($templateBlocks as $templateBlock) {
$renderedTemplates[] = $this->templateBlockRenderer->render($templateBlock, $context);
}
return implode("\n", $renderedTemplates);
}
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateEventRenderer.php
->
render
(line 37)
public function render(array $eventNames, array $context = []): string
{
$this->templateBlockRenderingHistory->startRenderingEvent($eventNames, $context);
$renderedEvent = $this->templateEventRenderer->render($eventNames, $context);
$this->templateBlockRenderingHistory->stopRenderingEvent($eventNames, $context);
return $renderedEvent;
}
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateEventRenderer.php
->
render
(line 46)
'<!-- BEGIN EVENT | event name: "%s" -->',
implode(', ', $eventNames),
);
}
$renderedParts[] = $this->templateEventRenderer->render($eventNames, $context);
if ($shouldRenderHtmlDebug) {
$renderedParts[] = sprintf(
'<!-- END EVENT | event name: "%s" -->',
implode(', ', $eventNames),
in
vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Twig/TemplateEventExtension.php
->
render
(line 50)
if (is_string($eventName)) {
$eventName = [$eventName];
}
Assert::notEmpty($eventName);
return $this->templateEventRenderer->render($eventName, $context);
}
}
in
var/cache/dev/twig/59/59f7e9119a7b6ce704305b6b39011a7c.php
->
render
(line 55)
$macros["pagination"] = $this->macros["pagination"] = $this->load("@SyliusUi/Macro/pagination.html.twig", 2)->unwrap();
// line 3
yield "
";
// line 4
yield $this->extensions['Sylius\Bundle\UiBundle\Twig\TemplateEventExtension']->render("sylius.shop.product.index.search", $context);
yield "
<div class=\"ui clearing hidden divider\"></div>
";
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php
->
yield
(line 92)
// line 10
yield "\t\t\t\t</div>
\t\t\t\t<div class=\"twelve wide column\">
\t\t\t\t\t";
// line 12
yield from $this->load("@SyliusShop/Product/Index/_main.html.twig", 12)->unwrap()->yield($context);
// line 13
yield "\t\t\t\t</div>
\t\t\t</div>
\t\t</div>
\t</div>
in
vendor/twig/twig/src/Template.php
->
block_content
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
yield from $template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/4b/4b276f5117300435dcf600880972af90.php
->
yieldBlock
(line 327)
\t\t\t</div>
\t\t</div>
\t\t<div class=\"pusher\">
\t\t\t<div id=\"content\" class=\"ui segment\"> ";
// line 148
yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
// line 149
yield "\t\t\t\t</div>
\t\t\t</div>
\t\t</div>
\t\t";
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php
->
yield
(line 53)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@SyliusShop/Product/index.html.twig"));
$this->parent = $this->load("@SyliusShop/layout.html.twig", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{
$context += $this->env->getGlobals();
$blocks = array_merge($this->blocks, $blocks);
try {
yield from $this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;
}
public function display(array $context, array $blocks = []): void
{
foreach ($this->yield($context, $blocks) as $data) {
echo $data;
}
}
public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 51)
yield from $this->template->yieldBlock($name, $context);
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
/**
* @return void
*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/sylius/resource-bundle/src/Bundle/Controller/ControllerTrait.php
->
render
(line 247)
if ($this->container->has('templating')) {
@trigger_error('Using the "templating" service is deprecated since Symfony 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
$content = $this->container->get('templating')->render($view, $parameters);
} elseif ($this->container->has('twig')) {
$content = $this->container->get('twig')->render($view, $parameters);
} else {
throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
}
if (null === $response) {
in
vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php
->
render
(line 150)
if (null !== $eventResponse) {
return $eventResponse;
}
if ($configuration->isHtmlRequest()) {
return $this->render($configuration->getTemplate(ResourceActions::INDEX . '.html'), [
'configuration' => $configuration,
'metadata' => $this->metadata,
'resources' => $resources,
$this->metadata->getPluralName() => $resources,
]);
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. { "exception": {} } |
INFO 22:32:04 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. { "exception": {} } |
INFO 22:32:04 | php |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead. { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | php |
User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface". { "exception": {} } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "54806a" }, "request_uri": "https://gestion.ecoleconduitevachon.com/_profiler/54806a", "method": "GET" } |
DEBUG 22:32:04 | security |
Checking for authenticator support. { "firewall_name": "shop", "authenticators": 2 } |
DEBUG 22:32:04 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 22:32:04 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 22:32:04 | security |
Checking support on authenticator. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 22:32:04 | security |
Authenticator does not support the request. { "firewall_name": "shop", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 22:32:04 | 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 22:32:04 | 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 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 22:32:04 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
INFO 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | 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 22:32:04 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:32:04 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:32:04 | 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 22:32:04 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 22:32:04 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:32:04 | 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 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | 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 22:32:05 | 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 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Bridge\Monolog\Handler\FirePHPHandler::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bridge\\Monolog\\Handler\\FirePHPHandler::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\XFrameOptionsSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\XFrameOptionsSubscriber::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\ShopCustomerAccountSubSectionCacheControlSubscriber::setCacheControlDirectives" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ShopBundle\EventListener\SessionCartSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\SessionCartSubscriber::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\CircularDependencyBreakingErrorListener::removeCspHeader" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:32:05 | event |
Notified event "kernel.response" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelResponse". { "event": "kernel.response", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelResponse" } |
DEBUG 22:32:05 | 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 22:32:05 | 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 22:32:05 | 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 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ResourceBundle\Storage\CookieStorage::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ResourceBundle\\Storage\\CookieStorage::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ApiBundle\EventSubscriber\KernelRequestEventSubscriber::validateApi". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ApiBundle\\EventSubscriber\\KernelRequestEventSubscriber::validateApi" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Resource\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Resource\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\ShopBundle\EventListener\NonChannelLocaleListener::restrictRequestLocale". { "event": "kernel.request", "listener": "Sylius\\Bundle\\ShopBundle\\EventListener\\NonChannelLocaleListener::restrictRequestLocale" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\LocaleBundle\Listener\RequestLocaleSetter::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\LocaleBundle\\Listener\\RequestLocaleSetter::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopUserListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopUserListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\AdminBundle\EventListener\AdminFilterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\AdminBundle\\EventListener\\AdminFilterSubscriber::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.request" to listener "Sylius\Bundle\CoreBundle\Checkout\CheckoutResolver::onKernelRequest". { "event": "kernel.request", "listener": "Sylius\\Bundle\\CoreBundle\\Checkout\\CheckoutResolver::onKernelRequest" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:32:05 | 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 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 22:32:05 | event |
Notified event "kernel.controller_arguments" to listener "ContainerE6zXBtP\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerE6zXBtP\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 22:32:05 | 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 Traces 2
[2/2]
RuntimeError
|
---|
Twig\Error\RuntimeError: An exception has been thrown during the rendering of a template ("Expected a scalar value as a 2nd argument to "Symfony\Component\HttpFoundation\InputBag::get()", "array" given.") in "@SyliusShop/Product/Index/_sorting.html.twig" at line 6. at themes/vachon/templates/bundles/SyliusShopBundle/Product/Index/_sorting.html.twig:6 at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array()) (vendor/twig/twig/src/Template.php:358) at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/Template.php:373) at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/TemplateWrapper.php:51) at Twig\TemplateWrapper->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/Environment.php:333) at Twig\Environment->render('@SyliusShop/Product/Index/_sorting.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/TwigTemplateBlockRenderer.php:42) at Sylius\Bundle\UiBundle\Renderer\TwigTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateBlockRenderer.php:38) at Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateBlockRenderer.php:46) at Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/DelegatingTemplateEventRenderer.php:36) at Sylius\Bundle\UiBundle\Renderer\DelegatingTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateEventRenderer.php:37) at Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateEventRenderer.php:46) at Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Twig/TemplateEventExtension.php:50) at Sylius\Bundle\UiBundle\Twig\TemplateEventExtension->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (var/cache/dev/twig/59/59f7e9119a7b6ce704305b6b39011a7c.php:55) at __TwigTemplate_86e5c7dad84ef78b96d06b2c4df80d1c->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array()) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php:92) at __TwigTemplate_0cbe8bafb429ba2960e0ca781b836115->block_content(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:446) at Twig\Template->yieldBlock('content', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (var/cache/dev/twig/4b/4b276f5117300435dcf600880972af90.php:327) at __TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php:53) at __TwigTemplate_0cbe8bafb429ba2960e0ca781b836115->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'))) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'))) (vendor/twig/twig/src/Template.php:358) at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/Template.php:373) at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/TemplateWrapper.php:51) at Twig\TemplateWrapper->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/Environment.php:333) at Twig\Environment->render('@SyliusShop/Product/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/sylius/resource-bundle/src/Bundle/Controller/ControllerTrait.php:247) at Sylius\Bundle\ResourceBundle\Controller\ResourceController->render('@SyliusShop/Product/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php:150) at Sylius\Bundle\ResourceBundle\Controller\ResourceController->indexAction(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) |
[1/2]
InvalidArgumentException
|
---|
InvalidArgumentException: Expected a scalar value as a 2nd argument to "Symfony\Component\HttpFoundation\InputBag::get()", "array" given. at vendor/symfony/http-foundation/InputBag.php:32 at Symfony\Component\HttpFoundation\InputBag->get('criteria', array()) (vendor/twig/twig/src/Extension/CoreExtension.php:1909) at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), object(InputBag), 'get', array('criteria', array()), 'method', false, false, false, 6) (var/cache/dev/twig/1c/1c7191f59c6c1b85d624e7aec52cadca.php:60) at __TwigTemplate_58c2e90dd254a06067c95a9b29f47dfc->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables), 'route' => 'sylius_shop_product_index', 'route_parameters' => array('_sylius' => array('template' => '@SyliusShop/Product/index.html.twig', 'grid' => 'sylius_shop_product'), '_locale' => 'fr_CA', 'slug' => 'ecole-st-georges', 'limit' => '18', 'sorting' => array('name' => 'asc'))), array()) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array()) (vendor/twig/twig/src/Template.php:358) at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/Template.php:373) at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/TemplateWrapper.php:51) at Twig\TemplateWrapper->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/twig/twig/src/Environment.php:333) at Twig\Environment->render('@SyliusShop/Product/Index/_sorting.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/TwigTemplateBlockRenderer.php:42) at Sylius\Bundle\UiBundle\Renderer\TwigTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateBlockRenderer.php:38) at Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateBlockRenderer.php:46) at Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateBlockRenderer->render(object(TemplateBlock), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/DelegatingTemplateEventRenderer.php:36) at Sylius\Bundle\UiBundle\Renderer\DelegatingTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateEventRenderer.php:37) at Sylius\Bundle\UiBundle\DataCollector\TraceableTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Renderer/HtmlDebugTemplateEventRenderer.php:46) at Sylius\Bundle\UiBundle\Renderer\HtmlDebugTemplateEventRenderer->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Twig/TemplateEventExtension.php:50) at Sylius\Bundle\UiBundle\Twig\TemplateEventExtension->render(array('sylius.shop.product.index.search'), array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (var/cache/dev/twig/59/59f7e9119a7b6ce704305b6b39011a7c.php:55) at __TwigTemplate_86e5c7dad84ef78b96d06b2c4df80d1c->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array()) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables))) (var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php:92) at __TwigTemplate_0cbe8bafb429ba2960e0ca781b836115->block_content(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:446) at Twig\Template->yieldBlock('content', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (var/cache/dev/twig/4b/4b276f5117300435dcf600880972af90.php:327) at __TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_title'), 'metatags' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_top'), 'header' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_header'), 'content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'), 'footer' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_6a1d165a2f1ca7ce42fc107a43989ab8), 'block_javascripts'))) (var/cache/dev/twig/fc/fc84f1289f35b3e1c7fe921b8542a7f0.php:53) at __TwigTemplate_0cbe8bafb429ba2960e0ca781b836115->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'))) (vendor/twig/twig/src/Template.php:402) at Twig\Template->yield(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView), 'app' => object(AppVariable), 'sylius_order_states_that_allows_to_resend_order_confirmation_email' => array('new', 'fulfilled'), 'use_webpack' => true, 'sylius' => object(ShopperContextGhostEa43fa2), 'sylius_base_locale' => 'fr_CA', 'sylius_meta' => array('version' => '1.14.5'), 'sonata_block' => object(GlobalVariables)), array('content' => array(object(__TwigTemplate_0cbe8bafb429ba2960e0ca781b836115), 'block_content'))) (vendor/twig/twig/src/Template.php:358) at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/Template.php:373) at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/TemplateWrapper.php:51) at Twig\TemplateWrapper->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/twig/twig/src/Environment.php:333) at Twig\Environment->render('@SyliusShop/Product/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/sylius/resource-bundle/src/Bundle/Controller/ControllerTrait.php:247) at Sylius\Bundle\ResourceBundle\Controller\ResourceController->render('@SyliusShop/Product/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => object(ResourceGridView), 'products' => object(ResourceGridView))) (vendor/sylius/resource-bundle/src/Bundle/Controller/ResourceController.php:150) at Sylius\Bundle\ResourceBundle\Controller\ResourceController->indexAction(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) |