1 Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46) (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46)

Exception

ErrorException

  1.         }
  2.         if (null === $sessionCookie) {
  3.             return null;
  4.         }
  5.         header_remove('Set-Cookie');
  6.         foreach ($otherCookies as $h) {
  7.             header($hfalse);
  8.         }
  9.         return $sessionCookie;
  1.             $sessionCookieSecure $sessionOptions['cookie_secure'] ?? false;
  2.             $sessionCookieHttpOnly $sessionOptions['cookie_httponly'] ?? true;
  3.             $sessionCookieSameSite $sessionOptions['cookie_samesite'] ?? Cookie::SAMESITE_LAX;
  4.             $sessionUseCookies $sessionOptions['use_cookies'] ?? true;
  5.             SessionUtils::popSessionCookie($sessionName$sessionId);
  6.             if ($sessionUseCookies) {
  7.                 $request $event->getRequest();
  8.                 $requestSessionCookieId $request->cookies->get($sessionName);
  1.         $this->called true;
  2.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
in vendor/symfony/http-kernel/HttpKernel.php -> filterResponse (line 184)
  1.                 throw new ControllerDoesNotReturnResponseException($msg$controller__FILE____LINE__ 17);
  2.             }
  3.         }
  4.         return $this->filterResponse($response$request$type);
  5.     }
  6.     /**
  7.      * Filters a response object.
  8.      *
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/html/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = &#39;flashes&#39;; private string $attributeName = &#39;attributes&#39;; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = &#39;flashes&#39;; private string $attributeName = &#39;attributes&#39;; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = &#39;flashes&#39;; private string $attributeName = &#39;attributes&#39;; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }</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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private string $flashName = &#39;flashes&#39;; private string $attributeName = &#39;attributes&#39;; private array $data = [...]; private int $usageIndex = 1; private ?Closure $usageReporter = class Closure { ... } }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; } }</span>, <span>$eventName = </span><span>&#39;kernel.response&#39;</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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; } }</span>, <span>$eventName = </span><span>&#39;kernel.response&#39;</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 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener&#39;; 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 = &#39;Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\Security\\\\Http\\\\Firewall\\\\ContextListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 1 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ResponseListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 2 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener&#39;; 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 = &#39;Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\WebLink\\\\EventListener\\\\AddLinkHeaderListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 3 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 4 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener&#39;; 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 = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener::onKernelResponse&#39;; private string $callableRef = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\HttpCacheListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = 0 }, 5 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\CacheAttributeListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -10 }, 6 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -100 }, 7 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener::removeCspHeader&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ErrorListener::removeCspHeader&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -128 }, 8 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener&#39;; 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 = &#39;Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Bundle\\\\WebProfilerBundle\\\\EventListener\\\\WebDebugToolbarListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -128 }, 9 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener::onResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\DisallowRobotsIndexingListener::onResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -255 }, 10 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private object|array|string $listener = [...]; private ?Closure $optimizedListener = class Closure { ... }; private string $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener&#39;; 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 = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener::onKernelResponse&#39;; private string $callableRef = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\SessionListener::onKernelResponse&#39;; private Symfony\\Component\\VarDumper\\Caster\\ClassStub|string $stub = *uninitialized*; private ?int $priority = -1000 }]</span>, <span>$eventName = </span><span>&#39;kernel.response&#39;</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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; } }</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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; } }</span>, <span>$eventName = </span><span>&#39;kernel.response&#39;</span>, <span>$dispatcher = </span><span>class Symfony\\Component\\EventDispatcher\\EventDispatcher { private array $listeners = [&#39;kernel.controller&#39; =&gt; [...], &#39;Symfony\\Component\\Security\\Http\\Event\\CheckPassportEvent&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;kernel.controller_arguments&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;Symfony\\Component\\Mailer\\Event\\MessageEvent&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerMessageFailedEvent&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerStartedEvent&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerRunningEvent&#39; =&gt; [...], &#39;Symfony\\Component\\Notifier\\Event\\MessageEvent&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerMessageHandledEvent&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;Symfony\\Component\\Security\\Http\\Event\\LoginSuccessEvent&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...], &#39;Symfony\\Component\\Security\\Http\\Event\\LogoutEvent&#39; =&gt; [...]]; private array $sorted = []; private array $optimized = [&#39;kernel.response&#39; =&gt; [...]] }</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 = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/api/transaction&#39;; protected $requestUri = &#39;/api/transaction&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = NULL; protected $defaultLocale = &#39;en&#39;; 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 = &#39;&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; } }</span>, <span>&#39;kernel.response&#39;</span>, <span>class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { protected $logger = class Symfony\\Bridge\\Monolog\\Logger { protected string $name = &#39;event&#39;; 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 = [&#39;kernel.response&#39; =&gt; [...]]; 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 = &#39;00000000000000040000000000000000&#39; }</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>&#39;PHPSESSID&#39;</span>, <span>$sessionId = </span><span>&#39;6bec990fdebeb9b033b5a55d480e5835&#39;</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>&#39;Set-Cookie&#39;</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>&#39;Cannot modify header information - headers already sent by (output started at /var/www/html/src/Controller/ApiController.php:46)&#39;</span>, <span>$file = </span><span>&#39;/var/www/html/vendor/symfony/http-foundation/Session/SessionUtils.php&#39;</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"
}

Stack Trace

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)