1
}
if (null === $sessionCookie) {
return null;
}
header_remove('Set-Cookie');
foreach ($otherCookies as $h) {
header($h, false);
}
return $sessionCookie;
$sessionCookieSecure = $sessionOptions['cookie_secure'] ?? false;
$sessionCookieHttpOnly = $sessionOptions['cookie_httponly'] ?? true;
$sessionCookieSameSite = $sessionOptions['cookie_samesite'] ?? Cookie::SAMESITE_LAX;
$sessionUseCookies = $sessionOptions['use_cookies'] ?? true;
SessionUtils::popSessionCookie($sessionName, $sessionId);
if ($sessionUseCookies) {
$request = $event->getRequest();
$requestSessionCookieId = $request->cookies->get($sessionName);
$this->called = true;
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
if ($e->isStarted()) {
$e->stop();
}
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
*/
private function filterResponse(Response $response, Request $request, int $type): Response
{
$event = new ResponseEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::RESPONSE);
$this->finishRequest($request, $type);
return $event->getResponse();
}
throw new ControllerDoesNotReturnResponseException($msg, $controller, __FILE__, __LINE__ - 17);
}
}
return $this->filterResponse($response, $request, $type);
}
/**
* Filters a response object.
*
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?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']);
};
Level | Channel | Message |
---|---|---|
INFO 07:08:55 | request |
Matched route "api_transaction_list". { "route": "api_transaction_list", "route_parameters": { "_route": "api_transaction_list", "_controller": "App\\Controller\\ApiController::list" }, "request_uri": "http://localhost:8080/api/transaction", "method": "GET" } |
DEBUG 07:08:55 | security |
Checking for authenticator support. { "firewall_name": "main", "authenticators": 1 } |
DEBUG 07:08:55 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 07:08:55 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:08:55 | security |
Read existing security token from the session. { "key": "_security_main", "token_class": "Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken" } |
INFO 07:08:55 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "driver": "pdo_pgsql", "host": "database", "port": 5432, "user": "app", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": [], "dbname": "app", "serverVersion": "15", "charset": "utf8" } } |
DEBUG 07:08:55 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.password AS password_3 FROM "user" t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.password AS password_3 FROM \"user\" t0 WHERE t0.id = ?", "params": { "1": 1 }, "types": { "1": 1 } } |
DEBUG 07:08:55 | security |
User was reloaded from a user provider. { "provider": "Symfony\\Bridge\\Doctrine\\Security\\User\\EntityUserProvider", "username": "romain" } |
DEBUG 07:08:55 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:08:55 | 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 07:08:55 | 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 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
DEBUG 07:08:55 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.amount AS amount_2, t0.description AS description_3, t0.type AS type_4, t0.category AS category_5, t0.date AS date_6, t0.person_id AS person_id_7 FROM transaction t0 WHERE t0.person_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.amount AS amount_2, t0.description AS description_3, t0.type AS type_4, t0.category AS category_5, t0.date AS date_6, t0.person_id AS person_id_7 FROM transaction t0 WHERE t0.person_id = ?", "params": { "1": 1 }, "types": { "1": 1 } } |
DEBUG 07:08:55 | security |
Stored the security token in the session. { "key": "_security_main" } |
DEBUG 07:08:55 | 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 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 07:08:55 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
CRITICAL 07:08:55 | request |
Uncaught PHP Exception ErrorException: "Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46)" at /var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php line 52 { "exception": { "xdebug_message": "<tr><th align='left' bgcolor='#f57900' colspan=\"5\"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> ErrorException: Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46) in /var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php on line <i>52</i></th></tr>\n<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>\n<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>\n<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0001</td><td bgcolor='#eeeeec' align='right'>351952</td><td bgcolor='#eeeeec'>{main}( )</td><td title='/var/www/html/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>0</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.0002</td><td bgcolor='#eeeeec' align='right'>352384</td><td bgcolor='#eeeeec'>require_once( <font color='#00bb00'>'/var/www/html/vendor/autoload_runtime.php</font> )</td><td title='/var/www/html/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>5</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>3</td><td bgcolor='#eeeeec' align='center'>0.0046</td><td bgcolor='#eeeeec' align='right'>424624</td><td bgcolor='#eeeeec'>Symfony\\Component\\Runtime\\Runner\\Symfony\\HttpKernelRunner->run( )</td><td title='/var/www/html/vendor/autoload_runtime.php' bgcolor='#eeeeec'>.../autoload_runtime.php<b>:</b>29</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>4</td><td bgcolor='#eeeeec' align='center'>0.0046</td><td bgcolor='#eeeeec' align='right'>424624</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Kernel->handle( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = 'flashes'; private string $attributeName = 'attributes'; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }</span>, <span>$type = </span>???, <span>$catch = </span>??? )</td><td title='/var/www/html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php' bgcolor='#eeeeec'>.../HttpKernelRunner.php<b>:</b>35</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>5</td><td bgcolor='#eeeeec' align='center'>0.0226</td><td bgcolor='#eeeeec' align='right'>582392</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->handle( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = 'flashes'; private string $attributeName = 'attributes'; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }</span>, <span>$type = </span><span>1</span>, <span>$catch = </span><span>TRUE</span> )</td><td title='/var/www/html/vendor/symfony/http-kernel/Kernel.php' bgcolor='#eeeeec'>.../Kernel.php<b>:</b>184</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>6</td><td bgcolor='#eeeeec' align='center'>0.0227</td><td bgcolor='#eeeeec' align='right'>582864</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->handleRaw( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = 'flashes'; private string $attributeName = 'attributes'; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }</span>, <span>$type = </span><span>1</span> )</td><td title='/var/www/html/vendor/symfony/http-kernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>74</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>7</td><td bgcolor='#eeeeec' align='center'>0.0979</td><td bgcolor='#eeeeec' align='right'>1074168</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->filterResponse( <span>$response = </span><span>class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { protected $headers = [...]; protected $cacheControl = [...]; protected $computedCacheControl = [...]; protected $cookies = [...]; protected $headerNames = [...] }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' }</span>, <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = 'flashes'; private string $attributeName = 'attributes'; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }</span>, <span>$type = </span><span>1</span> )</td><td title='/var/www/html/vendor/symfony/http-kernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>184</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>8</td><td bgcolor='#eeeeec' align='center'>0.0980</td><td bgcolor='#eeeeec' align='right'>1074296</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ResponseEvent { private bool ${Symfony\\Contracts\\EventDispatcher\\Event}propagationStopped = FALSE; private Symfony\\Component\\HttpKernel\\HttpKernelInterface ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... }; private bool $handleAllThrowables = TRUE }; private Symfony\\Component\\HttpFoundation\\Request ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }; private ?int ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private Symfony\\Component\\HttpFoundation\\Response $response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' } }</span>, <span>$eventName = </span><span>'kernel.response'</span> )</td><td title='/var/www/html/vendor/symfony/http-kernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>196</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>9</td><td bgcolor='#eeeeec' align='center'>0.1062</td><td bgcolor='#eeeeec' align='right'>1326216</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ResponseEvent { private bool ${Symfony\\Contracts\\EventDispatcher\\Event}propagationStopped = FALSE; private Symfony\\Component\\HttpKernel\\HttpKernelInterface ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... }; private bool $handleAllThrowables = TRUE }; private Symfony\\Component\\HttpFoundation\\Request ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }; private ?int ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private Symfony\\Component\\HttpFoundation\\Response $response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' } }</span>, <span>$eventName = </span><span>'kernel.response'</span> )</td><td title='/var/www/html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php' bgcolor='#eeeeec'>.../TraceableEventDispatcher.php<b>:</b>127</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>10</td><td bgcolor='#eeeeec' align='center'>0.1063</td><td bgcolor='#eeeeec' align='right'>1327008</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->callListeners( <span>$listeners = </span><span>[0 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 1 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 2 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 3 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 4 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener::onKernelResponse'; private string $callableRef = 'Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 5 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -10 }, 6 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -100 }, 7 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener::removeCspHeader'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener::removeCspHeader'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -128 }, 8 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -128 }, 9 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener::onResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener::onResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -255 }, 10 => class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener'; private bool $called = TRUE; private bool $stoppedPropagation = FALSE; private Symfony\\Component\\Stopwatch\\Stopwatch $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private ?Symfony\\Component\\EventDispatcher\\EventDispatcherInterface $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private string $pretty = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener::onKernelResponse'; private string $callableRef = 'Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener::onKernelResponse'; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -1000 }]</span>, <span>$eventName = </span><span>'kernel.response'</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ResponseEvent { private bool ${Symfony\\Contracts\\EventDispatcher\\Event}propagationStopped = FALSE; private Symfony\\Component\\HttpKernel\\HttpKernelInterface ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... }; private bool $handleAllThrowables = TRUE }; private Symfony\\Component\\HttpFoundation\\Request ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }; private ?int ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private Symfony\\Component\\HttpFoundation\\Response $response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' } }</span> )</td><td title='/var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>56</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>11</td><td bgcolor='#eeeeec' align='center'>0.1112</td><td bgcolor='#eeeeec' align='right'>1445352</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener->__invoke( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ResponseEvent { private bool ${Symfony\\Contracts\\EventDispatcher\\Event}propagationStopped = FALSE; private Symfony\\Component\\HttpKernel\\HttpKernelInterface ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... }; private bool $handleAllThrowables = TRUE }; private Symfony\\Component\\HttpFoundation\\Request ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }; private ?int ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private Symfony\\Component\\HttpFoundation\\Response $response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' } }</span>, <span>$eventName = </span><span>'kernel.response'</span>, <span>$dispatcher = </span><span>class Symfony\\Component\\EventDispatcher\\EventDispatcher { private array $listeners = ['kernel.controller' => [...], 'Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent' => [...], 'kernel.response' => [...], 'kernel.exception' => [...], 'kernel.request' => [...], 'kernel.finish_request' => [...], 'kernel.controller_arguments' => [...], 'console.error' => [...], 'console.terminate' => [...], 'Symfony\\Component\\Mailer\\Event\\MessageEvent' => [...], 'console.command' => [...], 'Symfony\\Component\\Messenger\\Event\\WorkerMessageFailedEvent' => [...], 'Symfony\\Component\\Messenger\\Event\\WorkerStartedEvent' => [...], 'Symfony\\Component\\Messenger\\Event\\WorkerRunningEvent' => [...], 'Symfony\\Component\\Notifier\\Event\\MessageEvent' => [...], 'kernel.terminate' => [...], 'Symfony\\Component\\Messenger\\Event\\WorkerMessageHandledEvent' => [...], 'kernel.view' => [...], 'Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent' => [...], 'debug.security.authorization.vote' => [...], 'Symfony\\Component\\Security\\Http\\Event\\LogoutEvent' => [...]]; private array $sorted = []; private array $optimized = ['kernel.response' => [...]] }</span> )</td><td title='/var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>206</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>12</td><td bgcolor='#eeeeec' align='center'>0.1112</td><td bgcolor='#eeeeec' align='right'>1445352</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\EventListener\\AbstractSessionListener->onKernelResponse( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ResponseEvent { private bool ${Symfony\\Contracts\\EventDispatcher\\Event}propagationStopped = FALSE; private Symfony\\Component\\HttpKernel\\HttpKernelInterface ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolverInterface $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... }; private bool $handleAllThrowables = TRUE }; private Symfony\\Component\\HttpFoundation\\Request ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = ''; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = '/api/transaction'; protected $requestUri = '/api/transaction'; protected $baseUrl = ''; protected $basePath = NULL; protected $method = 'GET'; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = 'en'; private ?string $preferredFormat = NULL; private bool $isHostValid = TRUE; private bool $isForwardedValid = TRUE; private bool $isSafeContentPreferred = *uninitialized* }; private ?int ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private Symfony\\Component\\HttpFoundation\\Response $response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = ''; protected $version = '1.1'; protected $statusCode = 200; protected $statusText = 'OK'; protected $charset = 'UTF-8' } }</span>, <span>'kernel.response'</span>, <span>class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { protected $logger = class Symfony\\Bridge\\Monolog\\Logger { protected string $name = 'event'; protected array $handlers = [...]; protected array $processors = [...]; protected bool $microsecondTimestamps = TRUE; protected DateTimeZone $timezone = class DateTimeZone { ... }; protected ?Closure $exceptionHandler = NULL; private int ${Monolog\\Logger}logDepth = 0; private bool ${Monolog\\Logger}detectCycles = TRUE }; protected $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { private bool $morePrecision = TRUE; private array $sections = [...]; private array $activeSections = [...] }; private ?SplObjectStorage ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}callStack = class SplObjectStorage { }; private Symfony\\Component\\EventDispatcher\\EventDispatcherInterface ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}dispatcher = class Symfony\\Component\\EventDispatcher\\EventDispatcher { private array $listeners = [...]; private array $sorted = [...]; private array $optimized = [...] }; private array ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}wrappedListeners = ['kernel.response' => [...]]; private array ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}orphanedEvents = []; private ?Symfony\\Component\\HttpFoundation\\RequestStack ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { private array $requests = [...] }; private string ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}currentRequestHash = '00000000000000040000000000000000' }</span> )</td><td title='/var/www/html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php' bgcolor='#eeeeec'>.../WrappedListener.php<b>:</b>115</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>13</td><td bgcolor='#eeeeec' align='center'>0.1115</td><td bgcolor='#eeeeec' align='right'>1446000</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpFoundation\\Session\\SessionUtils::popSessionCookie( <span>$sessionName = </span><span>'PHPSESSID'</span>, <span>$sessionId = </span><span>'6bec990fdebeb9b033b5a55d480e5835'</span> )</td><td title='/var/www/html/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php' bgcolor='#eeeeec'>.../AbstractSessionListener.php<b>:</b>148</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>14</td><td bgcolor='#eeeeec' align='center'>0.1115</td><td bgcolor='#eeeeec' align='right'>1446816</td><td bgcolor='#eeeeec'><a href='http://www.php.net/function.header-remove' target='_new'>header_remove</a>( <span>$name = </span><span>'Set-Cookie'</span> )</td><td title='/var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php' bgcolor='#eeeeec'>.../SessionUtils.php<b>:</b>52</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>15</td><td bgcolor='#eeeeec' align='center'>0.1115</td><td bgcolor='#eeeeec' align='right'>1447008</td><td bgcolor='#eeeeec'>Symfony\\Component\\ErrorHandler\\ErrorHandler->handleError( <span>$type = </span><span>2</span>, <span>$message = </span><span>'Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46)'</span>, <span>$file = </span><span>'/var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php'</span>, <span>$line = </span><span>52</span> )</td><td title='/var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php' bgcolor='#eeeeec'>.../SessionUtils.php<b>:</b>52</td></tr>\n" } } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:08:55 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:08:55 | 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 07:08:55 | 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 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments" } |
DEBUG 07:08:55 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments" } |
ErrorException
|
---|
ErrorException: Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46) at vendor/symfony/http-foundation/Session/SessionUtils.php:52 at Symfony\Component\HttpFoundation\Session\SessionUtils::popSessionCookie('PHPSESSID', '6bec990fdebeb9b033b5a55d480e5835') (vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:148) at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->onKernelResponse(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.response', object(ResponseEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ResponseEvent), 'kernel.response') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:127) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ResponseEvent), 'kernel.response') (vendor/symfony/http-kernel/HttpKernel.php:196) at Symfony\Component\HttpKernel\HttpKernel->filterResponse(object(Response), object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:184) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:184) 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('/var/www/html/vendor/autoload_runtime.php') (public/index.php:5) |