ErrorController
Request
GET Parameters
No GET parameters
POST Parameters
No POST parameters
Uploaded Files
No files were uploaded
Request Attributes
| Key | Value |
|---|---|
| _controller | "error_controller" |
| _stopwatch_token | "b63fb5" |
| exception | Twig\Error\RuntimeError {#2406 -lineno: 43 -name: "front_otacos/promo.html.twig" -rawMessage: "Impossible to access an attribute ("titre") on a null variable." -sourcePath: "/home/otacostest/www/templates/front_otacos/promo.html.twig" -sourceCode: """ {% extends 'base.html.twig' %}\n \n {% block title %}{{'menu.promodumoment'|trans}}{% endblock %}\n \n {% block body %}\n <style>\n .example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }\n .example-wrapper code { background: #F5F5F5; padding: 2px 6px; }\n .styledMap {\n padding: 5px 10px;\n }\n .gm-style-iw {\n border: 2px solid #ff7200;\n }\n \n .styledMap h1{\n color: #ff7200;\n font-size: 1.4em;\n text-transform: uppercase;\n font-family: 'heavitas';\n font-weight:normal;\n }\n .styledMap p{\n font-size: 1.2em;\n margin:0;\n font-family: 'Josefin Sans',sans-serif;\n \n }\n \n \n </style>\n \n <div class="promo">\n <div class="wrapper">\n <ul class="breadcrumb">\n <li><a href="{{path('home')}}">{{'accueil'|trans}}</a></li>\n <li>{{'menu.promodumoment'|trans}}</li>\n </ul>\n \n <h1 class="titreDualFont"><div><span>Promo</span> du moment</div></h1>\n \n <p class="chapo">\n <b>{{promo.titre}}</b>\n </p>\n \n <div class="stand2col">\n <div class="promo-visuel">\n <img src="/img/promo-moment.png" />\n </div>\n <div class="promo-description">\n <p>{{promo.chapo|nl2br}}</p>\n \n <h3>{{'promo.1'|trans}} :</h3>\n {{promo.texte|raw}}\n \n <p class="promo-description-mentions">\n {{promo.mentions|nl2br}}\n </p>\n </div>\n </div>\n \n \n <h2>{{'promo.2'|trans}}</h2>\n \n <div class="map">\n <div id="map" style="width:100%;height:100%;"></div>\n </div>\n \n \n </div>\n \n \n </div>\n <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDdDbL-0mCap-U8hE8UrIktLcvdxYOXWVg&callback=initMap&v=weekly"\n async\n ></script>\n \n \n {% endblock %}\n \n \n {% block javascripts %}\n <script>\n let map;\n const image = "{{ app.request.schemeAndHttpHost ~ app.request.baseUrl }}/img/markermap.svg";\n \n \n function initMap() {\n map = new google.maps.Map(document.getElementById("map"), {\n mapId: "2262022a4ce1b38",\n center: { lat: 48.85596, lng: 2.35452 },\n zoom: 14,\n });\n let infowindow;\n \n {% for resto in restos %}\n let marker{{loop.index0}} = new google.maps.Marker({\n position: { lat: {{resto.lat}}, lng: {{resto.lng}}},\n map,\n title: '{{resto.name|escape('js')}}',\n icon: image,\n });\n \n \n marker{{loop.index0}}.addListener("click", () => {\n if(infowindow) infowindow.close();\n \n let contentInfo = "<div class=\"styledMap\">";\n contentInfo+= "<h1>{{resto.name|escape('js')}}</h1>";\n contentInfo+= "<p><b>{{resto.address|escape('js')}}</b></p>";\n {% if resto.address2 is not empty %}\n contentInfo+= "<p><b>{{resto.address2|escape('js')}}</b></p>";\n {% endif %}\n contentInfo+= "<p><b>{{resto.zipcode|escape('js')}} {{resto.city|escape('js')}}</b></p>";\n \n {% if resto.phone is not null %}\n contentInfo+= "<p>Tél. <a href=\"tel:{{resto.phone}}\">{{resto.phone}}</a></p>";\n {% endif %}\n \n contentInfo+= "<br/><p>Lundi : ";\n {% if resto.mondayOpen is not null and resto.mondayClose is not null %}\n contentInfo+= "{{resto.mondayOpen|date('H')}}h{{resto.mondayOpen|date('i')}} - {{resto.mondayClose|date('H')}}h{{resto.mondayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n \n contentInfo+= "<p>Mardi : ";\n {% if resto.tuesdayOpen is not null and resto.tuesdayClose is not null %}\n contentInfo+= "{{resto.tuesdayOpen|date('H')}}h{{resto.tuesdayOpen|date('i')}} - {{resto.tuesdayClose|date('H')}}h{{resto.tuesdayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "<p>Mercredi : ";\n {% if resto.wednesdayOpen is not null and resto.wednesdayClose is not null %}\n contentInfo+= "{{resto.wednesdayOpen|date('H')}}h{{resto.wednesdayOpen|date('i')}} - {{resto.wednesdayClose|date('H')}}h{{resto.wednesdayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "<p>Jeudi : ";\n {% if resto.thursdayOpen is not null and resto.thursdayClose is not null %}\n contentInfo+= "{{resto.thursdayOpen|date('H')}}h{{resto.thursdayOpen|date('i')}} - {{resto.thursdayClose|date('H')}}h{{resto.thursdayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "<p>Vendredi : ";\n {% if resto.fridayOpen is not null and resto.fridayClose is not null %}\n contentInfo+= "{{resto.fridayOpen|date('H')}}h{{resto.fridayOpen|date('i')}} - {{resto.fridayClose|date('H')}}h{{resto.fridayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "<p>Samedi : ";\n {% if resto.saturdayOpen is not null and resto.saturdayClose is not null %}\n contentInfo+= "{{resto.saturdayOpen|date('H')}}h{{resto.saturdayOpen|date('i')}} - {{resto.saturdayClose|date('H')}}h{{resto.saturdayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "<p>Dimanche : ";\n {% if resto.sundayOpen is not null and resto.sundayClose is not null %}\n contentInfo+= "{{resto.sundayOpen|date('H')}}h{{resto.sundayOpen|date('i')}} - {{resto.sundayClose|date('H')}}h{{resto.sundayClose|date('i')}}</p>"; \n {% else %}\n contentInfo+= " FERMÉ";\n {% endif %}\n \n contentInfo+= "</div>";\n \n \n infowindow = new google.maps.InfoWindow({\n content: contentInfo,\n });\n \n infowindow.open({\n anchor: marker{{loop.index0}},\n map,\n shouldFocus: false,\n });\n });\n \n \n {% endfor %}\n \n }\n </script>\n {% endblock %}\n """ #message: "Impossible to access an attribute ("titre") on a null variable." #code: 0 #file: "/home/otacostest/www/templates/front_otacos/promo.html.twig" #line: 43 : { { twig_get_attribute(Environment $env, Source $source, $object, $item, array $arguments = [], $type = 'any', $isDefinedTest = false, $ignoreStrictCheck = false, $sandboxed = false, int $lineno = -1) … › |
| logger | Symfony\Bridge\Monolog\Logger {#55 …6} |
Request Headers
| Header | Value |
|---|---|
| accept | "*/*" |
| accept-encoding | "gzip, br, zstd, deflate" |
| content-length | "" |
| content-type | "" |
| host | "otacostest.agence-achille.fr" |
| user-agent | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
| x-php-ob-level | "1" |
Request Content
Request content not available (it was retrieved as a resource).
Response
Response Headers
| Header | Value |
|---|---|
| cache-control | "no-cache, private" |
| content-type | "text/html; charset=UTF-8" |
| date | "Tue, 03 Feb 2026 14:42:43 GMT" |
| x-debug-exception | "Impossible%20to%20access%20an%20attribute%20%28%22titre%22%29%20on%20a%20null%20variable." |
| x-debug-exception-file | "%2Fhome%2Fotacostest%2Fwww%2Ftemplates%2Ffront_otacos%2Fpromo.html.twig:43" |
| x-debug-token | "f9cd91" |
Cookies
Request Cookies
No request cookies
Response Cookies
No response cookies
Session 8
Session Metadata
| Key | Value |
|---|---|
| Created | "Tue, 03 Feb 26 15:42:43 +0100" |
| Last used | "Tue, 03 Feb 26 15:42:43 +0100" |
| Lifetime | 0 |
Session Attributes
| Attribute | Value |
|---|---|
| _csrf/https-cookie_consent | "yMlbdIHxGC6l6f0v1Y8p-lMIVqyLCZ3GP4DDuFSlGxk" |
Session Usage
8
Usages
Stateless check enabled
| Usage |
|---|
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:98
[
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
"line" => 98
"function" => "start"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/CsrfTokenManager.php"
"line" => 72
"function" => "hasToken"
"class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
"line" => 78
"function" => "getToken"
"class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 167
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 160
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Form.php"
"line" => 1070
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 103
"function" => "createView"
"class" => "Symfony\Component\Form\Form"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 125
"function" => "show"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "showIfCookieConsentNotSet"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:101
[
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
"line" => 101
"function" => "has"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/CsrfTokenManager.php"
"line" => 72
"function" => "hasToken"
"class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
"line" => 78
"function" => "getToken"
"class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 167
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 160
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Form.php"
"line" => 1070
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 103
"function" => "createView"
"class" => "Symfony\Component\Form\Form"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 125
"function" => "show"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "showIfCookieConsentNotSet"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:88
[
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
"line" => 88
"function" => "set"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/security-csrf/CsrfTokenManager.php"
"line" => 77
"function" => "setToken"
"class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
"line" => 78
"function" => "getToken"
"class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 167
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/ResolvedFormType.php"
"line" => 160
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
"line" => 111
"function" => "finishView"
"class" => "Symfony\Component\Form\ResolvedFormType"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/form/Form.php"
"line" => 1070
"function" => "finishView"
"class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 103
"function" => "createView"
"class" => "Symfony\Component\Form\Form"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/connectholland/cookie-consent-bundle/Controller/CookieConsentController.php"
"line" => 125
"function" => "show"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "showIfCookieConsentNotSet"
"class" => "ConnectHolland\CookieConsentBundle\Controller\CookieConsentController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
"line" => 72
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Profiler/Profiler.php"
"line" => 161
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
"line" => 99
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
"line" => 117
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 230
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 59
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
"line" => 154
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 185
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 173
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
"line" => 73
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Profiler/Profiler.php"
"line" => 161
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
"line" => 99
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
"line" => 117
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 230
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 59
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
"line" => 154
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 185
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 173
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
"line" => 74
"function" => "getMetadataBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Profiler/Profiler.php"
"line" => 161
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
"line" => 99
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
"line" => 117
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 230
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 59
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
"line" => 154
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 185
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 173
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
"line" => 75
"function" => "all"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Profiler/Profiler.php"
"line" => 161
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
"line" => 99
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
"line" => 117
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 230
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 59
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
"line" => 154
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 185
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 173
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
"line" => 76
"function" => "getFlashBag"
"class" => "Symfony\Component\HttpFoundation\Session\Session"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Profiler/Profiler.php"
"line" => 161
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
"line" => 99
"function" => "collect"
"class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
"line" => 117
"function" => "onKernelResponse"
"class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 230
"function" => "__invoke"
"class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/EventDispatcher.php"
"line" => 59
"function" => "callListeners"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
"line" => 154
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\EventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 185
"function" => "dispatch"
"class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 173
"function" => "filterResponse"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php"
"line" => 86
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php"
"line" => 80
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler"
"type" => "::"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/AbstractSurrogateFragmentRenderer.php"
"line" => 67
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Fragment/FragmentHandler.php"
"line" => 85
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php"
"line" => 49
"function" => "render"
"class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php"
"line" => 58
"function" => "render"
"class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/cb/cbe001e4ec553aff8034125beb90766f5e808e3d28cea129cff61103dad78ebc.php"
"line" => 367
"function" => "renderFragmentStrategy"
"class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_86c3632275713d21b2ba7ccf8d4cb7bebcd9f88f888d7c927c75d737fc43bf98"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/var/cache/dev/twig/87/8784cbc32647b10d6ea86541d98e796a50154d062ae599309b98a2e0d41b414f.php"
"line" => 50
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 394
"function" => "doDisplay"
"class" => "__TwigTemplate_c25f3f0d952a1d3bda44e8b2bf3531b17fd1099903a8478ffc1f4d1b3f8401e7"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 367
"function" => "displayWithErrorHandling"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Template.php"
"line" => 379
"function" => "display"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/TemplateWrapper.php"
"line" => 40
"function" => "render"
"class" => "Twig\Template"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/twig/twig/src/Environment.php"
"line" => 277
"function" => "render"
"class" => "Twig\TemplateWrapper"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 258
"function" => "render"
"class" => "Twig\Environment"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/framework-bundle/Controller/AbstractController.php"
"line" => 266
"function" => "renderView"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/src/Controller/FrontOtacosController.php"
"line" => 524
"function" => "render"
"class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 152
"function" => "promo"
"class" => "App\Controller\FrontOtacosController"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/HttpKernel.php"
"line" => 74
"function" => "handleRaw"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/http-kernel/Kernel.php"
"line" => 202
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\HttpKernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
"line" => 35
"function" => "handle"
"class" => "Symfony\Component\HttpKernel\Kernel"
"type" => "->"
]
[
"file" => "/home/otacostest/www/vendor/autoload_runtime.php"
"line" => 35
"function" => "run"
"class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
"type" => "->"
]
[
"file" => "/home/otacostest/www/public/index.php"
"line" => 5
"args" => [
"/home/otacostest/www/vendor/autoload_runtime.php"
]
"function" => "require_once"
]
]
|
Flashes
Flashes
No flash messages were created.
Server Parameters
Server Parameters
Defined in .env
| Key | Value |
|---|---|
| APP_ENV | "dev" |
| APP_SECRET | "e6528e49b2ea165951746dcc9fd86cd2" |
| DATABASE_URL | "mysql://root:Dr81Mc81Ar13%23@127.0.0.1:3306/otacostest" |
| MAILER_DSN | "sendmail://localhost" |
| MESSENGER_TRANSPORT_DSN | "doctrine://default?auto_setup=0" |
Defined as regular env variables
| Key | Value |
|---|---|
| APP_DEBUG | "1" |
| CONTENT_LENGTH | "" |
| CONTENT_TYPE | "" |
| DOCUMENT_ROOT | "/home/otacostest/www/public" |
| DOCUMENT_URI | "/index.php" |
| FCGI_ROLE | "RESPONDER" |
| GATEWAY_INTERFACE | "CGI/1.1" |
| HOME | "/var/www" |
| HTTPS | "on" |
| HTTP_ACCEPT | "*/*" |
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" |
| HTTP_HOST | "otacostest.agence-achille.fr" |
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
| PHP_SELF | "/index.php" |
| QUERY_STRING | "" |
| REDIRECT_STATUS | "200" |
| REMOTE_ADDR | "216.73.216.153" |
| REMOTE_PORT | "25537" |
| REQUEST_METHOD | "GET" |
| REQUEST_SCHEME | "https" |
| REQUEST_TIME | 1770129763 |
| REQUEST_TIME_FLOAT | 1770129763.0968 |
| REQUEST_URI | "/it/promo-in-corso" |
| SCRIPT_FILENAME | "/home/otacostest/www/public/index.php" |
| SCRIPT_NAME | "/index.php" |
| SERVER_ADDR | "163.172.59.112" |
| SERVER_NAME | "otacostest.agence-achille.fr" |
| SERVER_PORT | "443" |
| SERVER_PROTOCOL | "HTTP/2.0" |
| SERVER_SOFTWARE | "nginx/1.19.2" |
| SYMFONY_DOTENV_VARS | "APP_ENV,APP_SECRET,MESSENGER_TRANSPORT_DSN,DATABASE_URL,MAILER_DSN" |
| USER | "www-data" |
Parent Request
Return to parent request (token = bd362e)
| Key | Value |
|---|---|
| _controller | "App\Controller\FrontOtacosController::promo" |
| _firewall_context | "security.firewall.map.context.main" |
| _locale | "it" |
| _remove_csp_headers | true |
| _route | "promo" |
| _route_params | [ "_locale" => "it" ] |
| _security_firewall_run | "_security_main" |
| _stopwatch_token | "cb73d1" |