Error 500 Internal Server Error

GET https://demo.panelzajec.pl/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0

ErrorController

Request

GET Parameters

None

POST Parameters

None

Uploaded Files

None

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"732793"
exception
Doctrine\DBAL\Exception\InvalidFieldNameException {#575
  #message: "An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 's.active' in 'WHERE'"
  #code: 1054
  #file: "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php"
  #line: 63
  -previous: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
  -query: Doctrine\DBAL\Query {#574 …}
  trace: {
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:63 {
      Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(Exception $exception, ?Query $query): DriverException …
      › 1166,1611 => new InvalidFieldNameException($exception, $query),1052,
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:1454 {
      Doctrine\DBAL\Connection->handleDriverException(Exception $driverException, ?Query $query): DriverException …
      › $this->exceptionConverter ??= $this->driver->getExceptionConverter();$exception                  = $this->exceptionConverter->convert($driverException, $query);arguments: {
        $exception: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
        $query: Doctrine\DBAL\Query {#574 …}
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:1390 {
      Doctrine\DBAL\Connection->convertExceptionDuringQuery(Exception $e, string $sql, array $params = [], array $types = []): DriverException …
      › ): DriverException {    return $this->handleDriverException($e, new Query($sql, $params, $types));}
      arguments: {
        $driverException: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
        $query: Doctrine\DBAL\Query {#574 …}
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:807 {
      Doctrine\DBAL\Connection->executeQuery(string $sql, array $params = [], array $types = [], ?QueryCacheProfile $qcp = null): Result …
      › } catch (Driver\Exception $e) {    throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}
      arguments: {
        $e: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
        $sql: """
          SELECT\n
              i.*,\n
              u.email,\n
              u.first_name,\n
              u.last_name,\n
              d.host AS primary_domain\n
          FROM invoice i\n
          INNER JOIN app_user u ON u.id = i.recipient_id\n
          INNER JOIN school s ON s.id = i.school_id\n
          LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
          WHERE s.active = 1\n
              AND i.issued_at >= ?\n
          ORDER BY i.issued_at DESC, i.id DESC\n
          LIMIT 1000
          """
        $params: [ …1]
        $types: []
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:620 {
      Doctrine\DBAL\Connection->fetchAllAssociative(string $query, array $params = [], array $types = []): array …
      › {    return $this->executeQuery($query, $params, $types)->fetchAllAssociative();}
      arguments: {
        $sql: """
          SELECT\n
              i.*,\n
              u.email,\n
              u.first_name,\n
              u.last_name,\n
              d.host AS primary_domain\n
          FROM invoice i\n
          INNER JOIN app_user u ON u.id = i.recipient_id\n
          INNER JOIN school s ON s.id = i.school_id\n
          LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
          WHERE s.active = 1\n
              AND i.issued_at >= ?\n
          ORDER BY i.issued_at DESC, i.id DESC\n
          LIMIT 1000
          """
        $params: [ …1]
        $types: []
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/src/Controller/PublicInvoicePaymentController.php:131 {
      App\Controller\PublicInvoicePaymentController->invoiceByToken(Connection $connection, string $token): array …
      › 
      › $candidates = $connection->fetchAllAssociative(    <<<'SQL'
      arguments: {
        $query: """
          SELECT\n
              i.*,\n
              u.email,\n
              u.first_name,\n
              u.last_name,\n
              d.host AS primary_domain\n
          FROM invoice i\n
          INNER JOIN app_user u ON u.id = i.recipient_id\n
          INNER JOIN school s ON s.id = i.school_id\n
          LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
          WHERE s.active = 1\n
              AND i.issued_at >= :since\n
          ORDER BY i.issued_at DESC, i.id DESC\n
          LIMIT 1000
          """
        $params: [ …1]
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/src/Controller/PublicInvoicePaymentController.php:30 {
      App\Controller\PublicInvoicePaymentController->start(string $token, Request $request, Connection $connection, SchoolFeatureAccess $features, PayuCommissionCalculator $calculator, PayuOrderClient $payuClient): Response …
      › {    $invoice = $this->invoiceByToken($connection, $token);    if ($invoice === []) {
      arguments: {
        $connection: Doctrine\DBAL\Connection {#52 …}
        $token: "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/HttpKernel.php:183 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › // call controller$response = $controller(...$arguments);arguments: {
        $token: "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
        $connection: Doctrine\DBAL\Connection {#52 …}
        $features: App\Domain\School\SchoolFeatureAccess {#526 …}
        $calculator: App\Domain\Billing\PayuCommissionCalculator {#537 …}
        $payuClient: App\Integration\Payment\PayuOrderClient {#548 …}
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/HttpKernel.php:76 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
        $type: 1
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/Kernel.php:193 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
        $type: 1
        $catch: true
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34 {
      Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
      › {    $response = $this->kernel->handle($this->request);arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
      }
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php:32 {
      require_once …
      ›         ->getRunner($app)        ->run());
    }
    /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/public/index.php:5 {
      › 
      › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
        "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php"
      }
    }
  }
}
logger
Symfony\Component\HttpKernel\Log\Logger {#214
  -minLevelIndex: 0
  -formatter: Symfony\Component\HttpKernel\Log\Logger::format(string $level, string $message, array $context, bool $prefixDate = true): string {#213 …}
  -debug: true
  -logs: [
    "" => [
      [
        "channel" => null
        "context" => [
          "exception" => ErrorException {#201
            #message: "User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)"
            #code: 0
            #file: "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/deprecations/src/Deprecation.php"
            #line: 208
            #severity: E_USER_DEPRECATED
            trace: {
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/deprecations/src/Deprecation.php:208 {
                Doctrine\Deprecations\Deprecation::delegateTriggerToBackend(string $message, array $backtrace, string $link, string $package): void …
                › 
                ›     @trigger_error($message, E_USER_DEPRECATED);}
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/deprecations/src/Deprecation.php:108 {
                Doctrine\Deprecations\Deprecation::trigger(string $package, string $link, string $message, ...$args): void …
                › 
                ›     self::delegateTriggerToBackend($message, $backtrace, $link, $package);}
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/orm/src/Proxy/Autoloader.php:74 {
                Doctrine\ORM\Proxy\Autoloader::register(string $proxyDir, string $proxyNamespace, ?Closure $notFoundCallback = null): Closure …
                › if (PHP_VERSION_ID >= 80400) {    Deprecation::trigger(        'doctrine/orm',
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/doctrine-bundle/src/DoctrineBundle.php:136 {
                Doctrine\Bundle\DoctrineBundle\DoctrineBundle->boot(): void …
                › 
                ›     $this->autoloader = Autoloader::register($dir, $namespace, $proxyGenerator);}
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/Kernel.php:127 {
                Symfony\Component\HttpKernel\Kernel->boot(): void …
                ›     $bundle->setContainer($this->container);    $bundle->boot();}
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/Kernel.php:186 {
                Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › 
                › $this->boot();++$this->requestStackSize;
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34 {
                Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
                › {    $response = $this->kernel->handle($this->request);arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php:32 {
                require_once …
                ›         ->getRunner($app)        ->run());
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/public/index.php:5 {
                › 
                › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
                  "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php"
                }
              }
            }
          }
        ]
        "message" => "User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)"
        "priority" => 200
        "priorityName" => "info"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
    ]
    2 => [
      [
        "channel" => null
        "context" => [
          "route" => "public_invoice_payu_start"
          "route_parameters" => [
            "_route" => "public_invoice_payu_start"
            "_controller" => "App\Controller\PublicInvoicePaymentController::start"
            "token" => "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
          ]
          "request_uri" => "https://demo.panelzajec.pl/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
          "method" => "GET"
        ]
        "message" => "Matched route "{route}"."
        "priority" => 200
        "priorityName" => "info"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "firewall_name" => "main"
          "authenticators" => 2
        ]
        "message" => "Checking for authenticator support."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
        ]
        "message" => "Checking support on authenticator."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
        ]
        "message" => "Authenticator does not support the request."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
        ]
        "message" => "Checking support on authenticator."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator"
        ]
        "message" => "Authenticator does not support the request."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "App\EventSubscriber\SchoolContextSubscriber::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "App\EventSubscriber\FormCsrfSubscriber::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "exception" => Doctrine\DBAL\Exception\InvalidFieldNameException {#575
            #message: "An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 's.active' in 'WHERE'"
            #code: 1054
            #file: "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php"
            #line: 63
            -previous: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
            -query: Doctrine\DBAL\Query {#574 …}
            trace: {
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:63 {
                Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(Exception $exception, ?Query $query): DriverException …
                › 1166,1611 => new InvalidFieldNameException($exception, $query),1052,
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:1454 {
                Doctrine\DBAL\Connection->handleDriverException(Exception $driverException, ?Query $query): DriverException …
                › $this->exceptionConverter ??= $this->driver->getExceptionConverter();$exception                  = $this->exceptionConverter->convert($driverException, $query);arguments: {
                  $exception: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
                  $query: Doctrine\DBAL\Query {#574 …}
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:1390 {
                Doctrine\DBAL\Connection->convertExceptionDuringQuery(Exception $e, string $sql, array $params = [], array $types = []): DriverException …
                › ): DriverException {    return $this->handleDriverException($e, new Query($sql, $params, $types));}
                arguments: {
                  $driverException: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
                  $query: Doctrine\DBAL\Query {#574 …}
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:807 {
                Doctrine\DBAL\Connection->executeQuery(string $sql, array $params = [], array $types = [], ?QueryCacheProfile $qcp = null): Result …
                › } catch (Driver\Exception $e) {    throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}
                arguments: {
                  $e: Doctrine\DBAL\Driver\PDO\Exception {#557 …}
                  $sql: """
                    SELECT\n
                        i.*,\n
                        u.email,\n
                        u.first_name,\n
                        u.last_name,\n
                        d.host AS primary_domain\n
                    FROM invoice i\n
                    INNER JOIN app_user u ON u.id = i.recipient_id\n
                    INNER JOIN school s ON s.id = i.school_id\n
                    LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
                    WHERE s.active = 1\n
                        AND i.issued_at >= ?\n
                    ORDER BY i.issued_at DESC, i.id DESC\n
                    LIMIT 1000
                    """
                  $params: [ …1]
                  $types: []
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/doctrine/dbal/src/Connection.php:620 {
                Doctrine\DBAL\Connection->fetchAllAssociative(string $query, array $params = [], array $types = []): array …
                › {    return $this->executeQuery($query, $params, $types)->fetchAllAssociative();}
                arguments: {
                  $sql: """
                    SELECT\n
                        i.*,\n
                        u.email,\n
                        u.first_name,\n
                        u.last_name,\n
                        d.host AS primary_domain\n
                    FROM invoice i\n
                    INNER JOIN app_user u ON u.id = i.recipient_id\n
                    INNER JOIN school s ON s.id = i.school_id\n
                    LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
                    WHERE s.active = 1\n
                        AND i.issued_at >= ?\n
                    ORDER BY i.issued_at DESC, i.id DESC\n
                    LIMIT 1000
                    """
                  $params: [ …1]
                  $types: []
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/src/Controller/PublicInvoicePaymentController.php:131 {
                App\Controller\PublicInvoicePaymentController->invoiceByToken(Connection $connection, string $token): array …
                › 
                › $candidates = $connection->fetchAllAssociative(    <<<'SQL'
                arguments: {
                  $query: """
                    SELECT\n
                        i.*,\n
                        u.email,\n
                        u.first_name,\n
                        u.last_name,\n
                        d.host AS primary_domain\n
                    FROM invoice i\n
                    INNER JOIN app_user u ON u.id = i.recipient_id\n
                    INNER JOIN school s ON s.id = i.school_id\n
                    LEFT JOIN school_domain d ON d.school_id = i.school_id AND d.primary_domain = 1 AND d.active = 1\n
                    WHERE s.active = 1\n
                        AND i.issued_at >= :since\n
                    ORDER BY i.issued_at DESC, i.id DESC\n
                    LIMIT 1000
                    """
                  $params: [ …1]
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/src/Controller/PublicInvoicePaymentController.php:30 {
                App\Controller\PublicInvoicePaymentController->start(string $token, Request $request, Connection $connection, SchoolFeatureAccess $features, PayuCommissionCalculator $calculator, PayuOrderClient $payuClient): Response …
                › {    $invoice = $this->invoiceByToken($connection, $token);    if ($invoice === []) {
                arguments: {
                  $connection: Doctrine\DBAL\Connection {#52 …}
                  $token: "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/HttpKernel.php:183 {
                Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
                › // call controller$response = $controller(...$arguments);arguments: {
                  $token: "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                  $connection: Doctrine\DBAL\Connection {#52 …}
                  $features: App\Domain\School\SchoolFeatureAccess {#526 …}
                  $calculator: App\Domain\Billing\PayuCommissionCalculator {#537 …}
                  $payuClient: App\Integration\Payment\PayuOrderClient {#548 …}
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/HttpKernel.php:76 {
                Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
                arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                  $type: 1
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/http-kernel/Kernel.php:193 {
                Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
                arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                  $type: 1
                  $catch: true
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34 {
                Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
                › {    $response = $this->kernel->handle($this->request);arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                }
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php:32 {
                require_once …
                ›         ->getRunner($app)        ->run());
              }
              /home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/public/index.php:5 {
                › 
                › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
                  "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/vendor/autoload_runtime.php"
                }
              }
            }
          }
        ]
        "message" => "Uncaught PHP Exception Doctrine\DBAL\Exception\InvalidFieldNameException: "An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 's.active' in 'WHERE'" at ExceptionConverter.php line 63"
        "priority" => 500
        "priorityName" => "critical"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "message" => "Listener "{listener}" stopped propagation of the event "{event}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
    ]
    743 => [
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "App\EventSubscriber\SchoolContextSubscriber::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "App\EventSubscriber\FormCsrfSubscriber::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
      [
        "channel" => null
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "debug"
        "timestamp" => 1787150899
        "timestamp_rfc3339" => "2026-08-19T16:48:19.000+02:00"
      ]
    ]
  ]
  -errorCount: [
    "" => 0
    2 => 1
    743 => 0
  ]
  -handle: null
  -requestStack: Symfony\Component\HttpFoundation\RequestStack {#207 …}
}

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, deflate"
from
"gptbot(at)openai.com"
host
"demo.panelzajec.pl"
referer
"https://www.testowa-szkola.panelzajec.pl"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.4; +https://openai.com/gptbot)"
x-openai-host-hash
"497381424"
x-php-ob-level
"0"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Wed, 19 Aug 2026 14:48:19 GMT"
x-debug-exception
"An%20exception%20occurred%20while%20executing%20a%20query%3A%20SQLSTATE%5B42S22%5D%3A%20Column%20not%20found%3A%201054%20Unknown%20column%20%27s.active%27%20in%20%27WHERE%27"
x-debug-exception-file
"%2Fhome%2Fklient.dhosting.pl%2Fskillpilot%2Fskillpilot.dfirma.pl%2Fvendor%2Fdoctrine%2Fdbal%2Fsrc%2FDriver%2FAPI%2FMySQL%2FExceptionConverter.php:63"
x-debug-token
"1176b5"

Cookies

Request Cookies

No request cookies

Response Cookies

No response cookies

Session

Session Metadata

No session metadata

Session Attributes

No session attributes

Session Usage

0 Usages
Stateless check enabled

Session not used.

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
APP_DEBUG
"1"
APP_ENV
"dev"
APP_SECRET
"dev-only-replace-me"
APP_SHARE_DIR
"var/share"
APP_URL
"http://localhost"
DATABASE_URL
"mysql://cho3to_skillpil:%zkR3)Tf1X(i6@skillpilot.mysql.dhosting.pl:3306/nied4o_skillpil?serverVersion=8.4.0&charset=utf8mb4"
DEFAULT_URI
"http://localhost"
DHOSTING_API_BASE_URL
"https://api.dhosting.pl"
DHOSTING_API_ENABLED
"1"
DHOSTING_API_PASS
"SkillPil0T123!"
DHOSTING_API_USER
"api_skillpilot"
DHOSTING_SMTP_HOST
"smtp.dpoczta.pl:587"
GOOGLE_CALENDAR_SCOPES
"openid https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/calendar.events"
GOOGLE_OAUTH_CLIENT_ID
"560094685588-l53kuvr527c8shjcirhilt99305sjpdf.apps.googleusercontent.com"
GOOGLE_OAUTH_CLIENT_SECRET
"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"
HCAPTCHA_SECRET
"ES_0375474e52454dc795c7d39809148edc"
HCAPTCHA_SITE_KEY
"946c58e4-9270-41a8-a0fe-5b4619e6078c"
MAILER_DSN
"smtp://system%40panelzajec.pl:PanelZ%40j3c123!@smtp.dpoczta.pl:587?require_tls=true"
SKILLPILOT_DEFAULT_SCHOOL_STORAGE_LIMIT_BYTES
"10737418240"
SKILLPILOT_DEFAULT_TIMEZONE
"Europe/Warsaw"
SKILLPILOT_DEMO_DOMAIN
"demo.panelzajec.pl"
SKILLPILOT_DEMO_GOOGLE_ACCESS_TOKEN
""
SKILLPILOT_DEMO_GOOGLE_REFRESH_TOKEN
""
SKILLPILOT_DEMO_KSEF_TAX_ID
"9191734716"
SKILLPILOT_DEMO_KSEF_TOKEN
"20260819-EC-2C97A84000-99263CCFBD-AB|nip-9191734716|3a43db5fcac04004872bc2b2384f739b76d18d4fa8af4d2ab98c6ee8a0e89315"
SKILLPILOT_DEMO_KSEF_TOKEN_REF
"env:SKILLPILOT_DEMO_KSEF_TOKEN"
SKILLPILOT_DEMO_PAYU_CLIENT_ID
"516421"
SKILLPILOT_DEMO_PAYU_CLIENT_MP5
""
SKILLPILOT_DEMO_PAYU_CLIENT_SECRET
"0f569af071dc8aa5917b86d3966202d1"
SKILLPILOT_DEMO_PAYU_CLIENT_SECRET_REF
"env:SKILLPILOT_DEMO_PAYU_CLIENT_SECRET"
SKILLPILOT_DEMO_PAYU_POS_ID
"516421"
SKILLPILOT_DEMO_R2_ACCESS_KEY
"6af959d2f93d6273b340b04bffd46850"
SKILLPILOT_DEMO_R2_ACCOUNT_ID
"62bcc5e36eed90245b2e71a87c4c12d2"
SKILLPILOT_DEMO_R2_BUCKET
"panelzajec-demo"
SKILLPILOT_DEMO_R2_SECRET_KEY
"83ce30d4afc9148853099b43aaf4ce47e54d79950932a0dbc44bcc5f9965e3f3"
SKILLPILOT_DEMO_RESET_INTERVAL_MINUTES
"120"
SKILLPILOT_GEOCODER_BASE_URL
"https://nominatim.openstreetmap.org"
SKILLPILOT_GEOCODER_USER_AGENT
"PanelZajec.pl/1.0 kontakt@panelzajec.pl"
SKILLPILOT_HCAPTCHA_ENABLED
"1"
SKILLPILOT_KSEF_MODE
"dev"
SKILLPILOT_MARKETING_CONTACT_EMAIL
"kontakt@panelzajec.pl"
SKILLPILOT_MARKETING_FROM_EMAIL
"kontakt@panelzajec.pl"
SKILLPILOT_PANEL_A_RECORD_IP
"109.95.157.230"
SKILLPILOT_PAYU_COMMISSION_RATE
"0.015"
SKILLPILOT_PAYU_GATEWAY_ENABLED
"1"
SKILLPILOT_PAYU_MODE
"dev"
SKILLPILOT_PLATFORM_DOMAIN
"panelzajec.pl"
SKILLPILOT_PLATFORM_KSEF_TAX_ID
"9191734716"
SKILLPILOT_PLATFORM_KSEF_TOKEN
"20260819-EC-2C97A84000-99263CCFBD-AB|nip-9191734716|3a43db5fcac04004872bc2b2384f739b76d18d4fa8af4d2ab98c6ee8a0e89315"
SKILLPILOT_PLATFORM_KSEF_TOKEN_REF
"env:SKILLPILOT_PLATFORM_KSEF_TOKEN"
SKILLPILOT_PLATFORM_PAYU_CLIENT_ID
"516421"
SKILLPILOT_PLATFORM_PAYU_CLIENT_SECRET
"0f569af071dc8aa5917b86d3966202d1"
SKILLPILOT_PLATFORM_PAYU_CLIENT_SECRET_REF
"env:SKILLPILOT_PLATFORM_PAYU_CLIENT_SECRET"
SKILLPILOT_PLATFORM_PAYU_POS_ID
"516421"
SKILLPILOT_SCHOOL_SUBDOMAIN_DOMAIN
"panelzajec.pl"
SKILLPILOT_SMS_RATE_LIMIT_PER_MINUTE
"10"
SKILLPILOT_UPLOAD_MAX_BYTES
"10485760"
SMSGATEWAY_API_BASE_URL
"https://app.sms-gateway.app/services/send.php"
SMSGATEWAY_API_KEY
"e0479c9cb1278aa7d6cb3c15d247631b43a0f096"
SMS_ACTIVE
"1"
SMS_DEVICE_PHONE_NUMBER
"+48665776581"
SMS_MODE
"free"
SMS_TYPE
"sms"
SMS_WEBHOOK_URL
"https://panelzajec.pl/sms-gateway/webhook"
TRUSTED_PROXIES
"127.0.0.1"

Defined as regular env variables

Key Value
APP_PROJECT_DIR
"/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl"
APP_RUNTIME
"Symfony\Component\Runtime\SymfonyRuntime"
APP_RUNTIME_OPTIONS
[
  "project_dir" => "/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl"
]
DOCUMENT_ROOT
"/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/public"
GEOIP_ADDR
"74.7.242.2"
GEOIP_CONTINENT_CODE
"NA"
GEOIP_COUNTRY_CODE
"US"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, deflate"
HTTP_FROM
"gptbot(at)openai.com"
HTTP_HOST
"demo.panelzajec.pl"
HTTP_REFERER
"https://www.testowa-szkola.panelzajec.pl"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.4; +https://openai.com/gptbot)"
HTTP_X_OPENAI_HOST_HASH
"497381424"
LANG
"pl_PL.UTF8"
MAGICK_THREAD_LIMIT
"1"
PATH
"/usr/local/bin:/bin:/usr/bin"
PHPRC
"/home/klient.dhosting.pl/skillpilot/.settings/"
PHP_SELF
"/index.php"
QUERY_STRING
""
REDIRECT_REQUEST_METHOD
"GET"
REDIRECT_STATUS
"200"
REDIRECT_URL
"/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
REMOTE_ADDR
"74.7.242.2"
REMOTE_PORT
"56332"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1787150899
REQUEST_TIME_FLOAT
1787150899.0162
REQUEST_URI
"/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
SCRIPT_FILENAME
"/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/public/index.php"
SCRIPT_NAME
"/index.php"
SCRIPT_URI
"https://demo.panelzajec.pl/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
SCRIPT_URL
"/pay/pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
SERVER_ADDR
"109.95.157.230"
SERVER_ADMIN
"admin@demonek.com"
SERVER_NAME
"demo.panelzajec.pl"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_ALGKEYSIZE
"256"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_PROTOCOL
"TLSv1.3"
SYMFONY_DOTENV_PATH
"/home/klient.dhosting.pl/skillpilot/skillpilot.dfirma.pl/.env"
SYMFONY_DOTENV_VARS
"APP_ENV,APP_SECRET,APP_SHARE_DIR,DEFAULT_URI,APP_URL,TRUSTED_PROXIES,SKILLPILOT_DEFAULT_TIMEZONE,SKILLPILOT_DEFAULT_SCHOOL_STORAGE_LIMIT_BYTES,SKILLPILOT_UPLOAD_MAX_BYTES,SKILLPILOT_GEOCODER_BASE_URL,SKILLPILOT_GEOCODER_USER_AGENT,SKILLPILOT_HCAPTCHA_ENABLED,HCAPTCHA_SITE_KEY,HCAPTCHA_SECRET,SMSGATEWAY_API_BASE_URL,SMSGATEWAY_API_KEY,SMS_ACTIVE,SMS_MODE,SMS_DEVICE_PHONE_NUMBER,SMS_WEBHOOK_URL,SMS_TYPE,SKILLPILOT_SMS_RATE_LIMIT_PER_MINUTE,DHOSTING_API_ENABLED,DHOSTING_API_BASE_URL,DHOSTING_API_USER,DHOSTING_API_PASS,DHOSTING_SMTP_HOST,GOOGLE_OAUTH_CLIENT_ID,GOOGLE_OAUTH_CLIENT_SECRET,GOOGLE_CALENDAR_SCOPES,SKILLPILOT_DEMO_DOMAIN,SKILLPILOT_DEMO_RESET_INTERVAL_MINUTES,SKILLPILOT_DEMO_PAYU_POS_ID,SKILLPILOT_DEMO_PAYU_CLIENT_ID,SKILLPILOT_DEMO_PAYU_CLIENT_SECRET_REF,SKILLPILOT_DEMO_PAYU_CLIENT_SECRET,SKILLPILOT_DEMO_KSEF_TAX_ID,SKILLPILOT_DEMO_KSEF_TOKEN_REF,SKILLPILOT_DEMO_KSEF_TOKEN,SKILLPILOT_DEMO_GOOGLE_ACCESS_TOKEN,SKILLPILOT_DEMO_GOOGLE_REFRESH_TOKEN,SKILLPILOT_DEMO_R2_ACCOUNT_ID,SKILLPILOT_DEMO_R2_BUCKET,SKILLPILOT_DEMO_R2_ACCESS_KEY,SKILLPILOT_DEMO_R2_SECRET_KEY,SKILLPILOT_PLATFORM_DOMAIN,SKILLPILOT_SCHOOL_SUBDOMAIN_DOMAIN,SKILLPILOT_PANEL_A_RECORD_IP,SKILLPILOT_MARKETING_CONTACT_EMAIL,SKILLPILOT_MARKETING_FROM_EMAIL,SKILLPILOT_PAYU_COMMISSION_RATE,SKILLPILOT_PAYU_GATEWAY_ENABLED,SKILLPILOT_PAYU_MODE,SKILLPILOT_PLATFORM_PAYU_POS_ID,SKILLPILOT_PLATFORM_PAYU_CLIENT_ID,SKILLPILOT_PLATFORM_PAYU_CLIENT_SECRET_REF,SKILLPILOT_PLATFORM_PAYU_CLIENT_SECRET,SKILLPILOT_KSEF_MODE,SKILLPILOT_PLATFORM_KSEF_TAX_ID,SKILLPILOT_PLATFORM_KSEF_TOKEN_REF,SKILLPILOT_PLATFORM_KSEF_TOKEN,APP_DEBUG,DATABASE_URL,MAILER_DSN,SKILLPILOT_DEMO_PAYU_CLIENT_MP5"
TMPDIR
"/home/klient.dhosting.pl/skillpilot/.tmp"
X-LSCACHE
"on,esi,combine"
X_SPDY
"HTTP2"
argc
0
argv
[]
change_header
"1"

Parent Request

Return to parent request (token = d1cb9b)

Key Value
_controller
"App\Controller\PublicInvoicePaymentController::start"
_firewall_context
"security.firewall.map.context.main"
_remove_csp_headers
true
_route
"public_invoice_payu_start"
_route_params
[
  "token" => "pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"
]
_security_authenticators
[]
_security_firewall_run
"_security_main"
_security_skipped_authenticators
[
  Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator {#387
    -supports: false
    -passport: null
    -duration: null
    -stub: "App\Security\LoginFormAuthenticator"
    -authenticated: null
    -exception: null
    -authenticator: App\Security\LoginFormAuthenticator {#285 …}
  }
  Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator {#388
    -supports: false
    -passport: null
    -duration: null
    -stub: "Symfony\Component\Security\Http\Authenticator\RememberMeAuthenticator"
    -authenticated: null
    -exception: null
    -authenticator: Symfony\Component\Security\Http\Authenticator\RememberMeAuthenticator {#389 …}
  }
]
_stopwatch_token
"fa4fc4"
school
[
  "id" => 207
  "name" => "Akademia Demo PanelZajec.pl"
  "slug" => "akademia-demo-panelzajec-pl"
  "status" => "active"
  "default_locale" => "pl"
  "logo_path" => "/site-assets/images/logo.svg"
  "meta_title_suffix" => "Akademia Demo PanelZajec.pl"
  "gtm_container_id" => null
  "google_analytics_id" => null
]
school_domain
[
  "id" => 237
  "host" => "demo.panelzajec.pl"
  "primary_domain" => true
]
token
"pay_A69wMP8SIjEMdm60N8169VBQrl5k_Ira2_EXwEpN0c0"