Error 500 Internal Server Error

GET https://clevernursery.com/app/payment/?q=%2Fapp%2Fpayment%2F

ErrorController

Request

GET Parameters

Key Value
q
"/app/payment/"

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_links
Symfony\Component\WebLink\GenericLinkProvider {#3123
  -links: [
    3122 => Symfony\Component\WebLink\Link {#3122
      -href: "https://clevernursery.com/api/docs.jsonld"
      -rel: [
        "http://www.w3.org/ns/hydra/core#apiDocumentation" => "http://www.w3.org/ns/hydra/core#apiDocumentation"
      ]
      -attributes: []
    }
  ]
}
_stopwatch_token
"6b9359"
exception
Twig\Error\RuntimeError {#2791
  #message: "Impossible to access an attribute ("photo") on a null variable."
  #code: 0
  #file: "/var/www/clevernursery.com/templates/app/payment/_table.html.twig"
  #line: 28
  -lineno: 28
  -name: "app/payment/_table.html.twig"
  -rawMessage: "Impossible to access an attribute ("photo") on a null variable."
  -sourcePath: "/var/www/clevernursery.com/templates/app/payment/_table.html.twig"
  -sourceCode: """
    <table\n
      id="datatable"\n
      class="table table-bordered dt-responsive nowrap w-100"\n
      data-controller="payment"\n
    >\n
      <thead>\n
        <tr>\n
          <th>#</th>\n
          <th>{% trans %} Payé par {% endtrans %}</th>\n
          <th>{% trans %} Abonnement {% endtrans %}</th>\n
          <th>{% trans %} Date {% endtrans %}</th>\n
          <th>{% trans %} Montant {% endtrans %}</th>\n
          <th>{% trans %} Collecté par {% endtrans %}</th>\n
          <th width="220px">{% trans %} Actions {% endtrans %}</th>\n
        </tr>\n
      </thead>\n
      <tbody>\n
        {% for payment in payments %}\n
        <tr>\n
          <th scope="row">\n
            {{ loop.index }}\n
          </th>\n
          <td>\n
            <div class="d-flex align-items-center">\n
              <div class="flex-shrink-0 me-3">\n
                <img\n
                  class="rounded-circle avatar-md"\n
                  src="{{ payment.payedBy.photo ? '/uploads/family_members/' ~ payment.payedBy.photo : '/front/images/family.png' }}"\n
                  alt="{{ payment.payedBy.firstName }} {{\n
                    payment.payedBy.lastName\n
                  }}"\n
                />\n
              </div>\n
              <div class="flex-grow-1">\n
                <a\n
                  href="{{\n
                    path('app_family_member_show', { id: payment.payedBy.id })\n
                  }}"\n
                >\n
                  <h5 class="font-size-14 mb-0">\n
                    {{ payment.payedBy.firstName }}\n
                    {{ payment.payedBy.lastName }}\n
                  </h5>\n
                </a>\n
              </div>\n
            </div>\n
          </td>\n
    \n
          <td>\n
            {{\n
              payment.subscription.service ? payment.subscription.service.name : ""\n
            }}\n
            -\n
            {{\n
              payment.subscription.service\n
                ? payment.subscription.service.duration\n
                : ""\n
            }}\n
            {% trans %} Jours {% endtrans %}\n
            <br />\n
            <b> {% trans %} Prix {% endtrans %} : </b>\n
            <span class="text-info"\n
              >{{ payment.subscription.total|number_format(0, '.', ' ') }}\n
              {{ company.currencie }}\n
            </span>\n
            /\n
            <b> {% trans %} Remise {% endtrans %} : </b>\n
            <span class="text-info"\n
              >{{ payment.subscription.discount|number_format(0, '.', ' ') }}\n
              {{ company.currencie }}\n
            </span>\n
          </td>\n
          <td>\n
            {{ payment.date ? payment.date|date('d-m-Y') : '' }}\n
          </td>\n
          <td>\n
            <b> {% trans %} Total {% endtrans %} : </b>\n
            <span class="text-info"\n
              >{{ payment.amount }}\n
              {{ company.currencie }}\n
            </span>\n
            <br />\n
          </td>\n
          <td>\n
            {{ payment.createdBy }}\n
          </td>\n
          <td>\n
            <a\n
              data-action="payment#edit"\n
              data-payment-id="{{ payment.id }}"\n
              href="javascript:void(0)"\n
              class="btn btn-info waves-effect waves-light me-2"\n
              data-toggle="tooltip"\n
              data-placement="top"\n
              title="{{ 'Modifier' | trans }}"\n
            >\n
              <i class="bx bx-edit font-size-16 align-middle"></i>\n
            </a>\n
    \n
            <a\n
              data-action="payment#del"\n
              data-payment-id="{{ payment.id }}"\n
              data-payment-token="{{ csrf_token('delete' ~ payment.id) }}"\n
              href="javascript:void(0)"\n
              class="btn btn-danger waves-effect waves-light me-2"\n
              data-toggle="tooltip"\n
              data-placement="top"\n
              title="{{ 'Supprimer' | trans }}"\n
            >\n
              <i class="bx bx-trash font-size-16 align-middle"></i>\n
            </a>\n
            {#\n
            <form\n
              style="display: contents"\n
              id="delete-form"\n
              method="post"\n
              action="{{ path('app_payment_delete', { id: payment.id }) }}"\n
              onclick="alertify.set('notifier','position', 'top-right'); alertify.confirm('Supprimer', 'Voulez-vous vraiment supprimer cet objet?', function(e){ document.getElementById('delete-form').submit(); }, function(){ alertify.error('Annuler')});"\n
            >\n
              <input\n
                type="hidden"\n
                name="_token"\n
                value="{{ csrf_token('delete' ~ payment.id) }}"\n
              />\n
              <a\n
                href="javascript:void(0);"\n
                type="button"\n
                class="btn btn-danger waves-effect waves-light me-2"\n
                data-toggle="tooltip"\n
                data-placement="top"\n
                title="{{ 'Supprimer' | trans }}"\n
              >\n
                <i class="bx bx-trash font-size-16 align-middle"></i>\n
              </a>\n
            </form>\n
            #}\n
          </td>\n
        </tr>\n
        {% endfor %}\n
      </tbody>\n
    </table>\n
    """
  trace: {
    /var/www/clevernursery.com/templates/app/payment/_table.html.twig:28 {
      twig_get_attribute(Environment $env, Source $source, $object, $item, array $arguments = [], $type = 'any', $isDefinedTest = false, $ignoreStrictCheck = false, $sandboxed = false, int $lineno = -1) …
      › class="rounded-circle avatar-md"src="{{ payment.payedBy.photo ? '/uploads/family_members/' ~ payment.payedBy.photo : '/front/images/family.png' }}"alt="{{ payment.payedBy.firstName }} {{
    }
    /var/www/clevernursery.com/templates/app/payment/_table.html.twig:28 {
      __TwigTemplate_9d864ff3c78cde1a33f65d9cefec6cb2->doDisplay(array $context, array $blocks = []) …
      › class="rounded-circle avatar-md"src="{{ payment.payedBy.photo ? '/uploads/family_members/' ~ payment.payedBy.photo : '/front/images/family.png' }}"alt="{{ payment.payedBy.firstName }} {{
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
    }
    /var/www/clevernursery.com/templates/app/payment/index.html.twig:49 {
      __TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c->block_content($context, array $blocks = []) …
      › <div class="table">  {% include "app/payment/_table.html.twig" %} {#  <table
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:171 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php:456 {
      __TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5->block_body($context, array $blocks = []) …
      › echo "      <div class=\"container-fluid\">";$this->displayBlock('content', $context, $blocks);echo "</div>
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:171 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/templates/base.html.twig:55 {
      __TwigTemplate_5cce8ba884d530b89152b06af4728a60->doDisplay(array $context, array $blocks = []) …
      › 
      ›   {% block body %}{% endblock %} {% include "_partials/flashes.html.twig" %}</body>
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
    }
    /var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php:49 {
      __TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("base.html.twig", "app/index.html.twig", 1);$this->parent->display($context, array_merge($this->blocks, $blocks));}
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
    }
    /var/www/clevernursery.com/var/cache/dev/twig/4a/4a8074fe0d18a63f126e8767b4ed7f2e.php:49 {
      __TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("app/index.html.twig", "app/payment/index.html.twig", 1);$this->parent->display($context, array_merge($this->blocks, $blocks));}
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Template.php:379 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/TemplateWrapper.php:38 {
      Twig\TemplateWrapper->render(array $context = []): string …
      › {    return $this->template->render($context);}
    }
    /var/www/clevernursery.com/vendor/twig/twig/src/Environment.php:280 {
      Twig\Environment->render($name, array $context = []): string …
      › {    return $this->load($name)->render($context);}
    }
    /var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php:242 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView(string $view, array $parameters = []): string …
      › 
      ›     return $this->container->get('twig')->render($view, $parameters);}
    }
    /var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php:253 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], Response $response = null): Response …
      › {    $content = $this->renderView($view, $parameters);    $response ??= new Response();
    }
    /var/www/clevernursery.com/src/Controller/App/PaymentController.php:58 {
      App\Controller\App\PaymentController->index(Request $request, PaymentRepository $paymentRepository, EntityManagerInterface $manager, FormFactoryInterface $formFactory): Response …
      › 
      › return $this->render('app/payment/index.html.twig', [    'payments' => $paymentRepository->findAll(),
    }
    /var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php:163 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › // call controller$response = $controller(...$arguments);}
    /var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php:74 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->handleRaw($request, $type);} catch (\Throwable $e) {
    }
    /var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php:184 {
      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 {
    }
    /var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
      Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
      › {    $response = $this->kernel->handle($this->request);    $response->send();
    }
    /var/www/clevernursery.com/vendor/autoload_runtime.php:29 {
      require_once …
      ›         ->getRunner($app)        ->run());
    }
    /var/www/clevernursery.com/public/index.php:5 {
      › 
      › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
        "/var/www/clevernursery.com/vendor/autoload_runtime.php"
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#155 …9}

Request Headers

Header Value
accept
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
accept-encoding
"gzip, br"
accept-language
"fr,fr-FR;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"
cdn-loop
"cloudflare; loops=1"
cf-connecting-ip
"197.7.226.54"
cf-ipcountry
"TN"
cf-ray
"97ef0f435c4d531c-MRS"
cf-visitor
"{"scheme":"https"}"
connection
"Keep-Alive"
content-length
""
content-type
""
cookie
"_ga=GA1.1.1487819935.1757184310; crisp-client%2Fsession%2Fae01a7e0-e35d-4797-8f8c-e759054ddf19=session_6140a576-bca8-4ee2-a0b9-40865f9e34d5; PHPSESSID=6pli7euvhjdoekofsj1doc4h9j; _ga_27CFP3ZTXH=GS2.1.s1757813311$o21$g1$t1757813341$j30$l0$h0"
host
"clevernursery.com"
priority
"u=0, i"
sec-ch-ua
""Chromium";v="140", "Not=A?Brand";v="24", "Microsoft Edge";v="140""
sec-ch-ua-mobile
"?0"
sec-ch-ua-platform
""Windows""
sec-fetch-dest
"document"
sec-fetch-mode
"navigate"
sec-fetch-site
"none"
upgrade-insecure-requests
"1"
user-agent
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0"
x-forwarded-for
"197.7.226.54"
x-forwarded-proto
"https"
x-php-ob-level
"1"

Request Content

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

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Sun, 14 Sep 2025 10:04:20 GMT"
vary
"Accept"
x-debug-exception
"Impossible%20to%20access%20an%20attribute%20%28%22photo%22%29%20on%20a%20null%20variable."
x-debug-exception-file
"%2Fvar%2Fwww%2Fclevernursery.com%2Ftemplates%2Fapp%2Fpayment%2F_table.html.twig:28"
x-debug-token
"42578b"

Cookies

Request Cookies

Key Value
PHPSESSID
"6pli7euvhjdoekofsj1doc4h9j"
_ga
"GA1.1.1487819935.1757184310"
_ga_27CFP3ZTXH
"GS2.1.s1757813311$o21$g1$t1757813341$j30$l0$h0"
crisp-client%2Fsession%2Fae01a7e0-e35d-4797-8f8c-e759054ddf19
"session_6140a576-bca8-4ee2-a0b9-40865f9e34d5"

Response Cookies

No response cookies

Session 6

Session Metadata

Key Value
Created
"Sun, 14 Sep 25 10:03:50 +0000"
Last used
"Sun, 14 Sep 25 10:04:13 +0000"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-colleague_basic
"u6sdjEk1ZdmSGMPCfmvJTyvguU5JCHrHZ7Qoq0sGETA"
_csrf/https-edit_colleague_basic
"IlnTHR2UNXjmhRe_c4zNbqVGwv6l_CTDsH4SO8_NzME"
_csrf/https-edit_subscription
"4gQZX3gzdQH_NmZjbjDZ0QseTS-KGggE2jiNOcT4b9M"
_csrf/https-payment
"H8Gn4Ktsx4SdmhdHIL5XSaW2kBo_5UH4GJ9_cRMmE_4"
_csrf/https-payment_type_edit
"ATEz53cTy6RSL7ouAKXasqML066Vv2BEPIcr4Xw0wUo"
_csrf/https-subscription_type_basic
"z3Pm1kvFEDYkCi9NFZzR6z5DvyItIbcItThC1UNXNWc"
_security.main.target_path
"https://clevernursery.com/app/payment/?q=%2Fapp%2Fpayment%2F"
_security_main
"O:75:"Symfony\Component\Security\Http\Authenticator\Token\PostAuthenticationToken":2:{i:0;s:4:"main";i:1;a:5:{i:0;O:15:"App\Entity\User":24:{s:19:"\x00App\Entity\User\x00id";O:26:"Symfony\Component\Uid\Ulid":1:{s:6:"\x00*\x00uid";s:26:"01K4G5K9MYQ3S47TH5QM6NDXN9";}s:22:"\x00App\Entity\User\x00email";s:19:"[email protected]";s:22:"\x00App\Entity\User\x00roles";a:1:{i:0;s:10:"ROLE_OWNER";}s:25:"\x00App\Entity\User\x00password";s:7:"abdomgh";s:27:"\x00App\Entity\User\x00first_name";s:5:"Wajdi";s:26:"\x00App\Entity\User\x00last_name";s:7:"Sghaier";s:27:"\x00App\Entity\User\x00isVerified";b:1;s:24:"\x00App\Entity\User\x00company";O:33:"Proxies\__CG__\App\Entity\Company":51:{s:17:"__isInitialized__";b:1;s:22:"\x00App\Entity\Company\x00id";O:26:"Symfony\Component\Uid\Ulid":1:{s:6:"\x00*\x00uid";s:26:"01K4G5N2KCQWFSZJRZZN4TE7K1";}s:24:"\x00App\Entity\Company\x00name";s:3:"sgh";s:24:"\x00App\Entity\Company\x00type";E:39:"App\Entity\enums\CompanyCategory:creche";s:24:"\x00App\Entity\Company\x00size";s:6:"petite";s:24:"\x00App\Entity\Company\x00logo";N;s:25:"\x00App\Entity\Company\x00email";N;s:25:"\x00App\Entity\Company\x00phone";N;s:26:"\x00App\Entity\Company\x00mobile";N;s:23:"\x00App\Entity\Company\x00fax";N;s:31:"\x00App\Entity\Company\x00description";N;s:27:"\x00App\Entity\Company\x00website";N;s:28:"\x00App\Entity\Company\x00facebook";N;s:27:"\x00App\Entity\Company\x00twitter";N;s:29:"\x00App\Entity\Company\x00instagram";N;s:27:"\x00App\Entity\Company\x00youtube";N;s:26:"\x00App\Entity\Company\x00tiktok";N;s:22:"\x00App\Entity\Company\x00rc";N;s:23:"\x00App\Entity\Company\x00nif";N;s:23:"\x00App\Entity\Company\x00nis";N;s:29:"\x00App\Entity\Company\x00is_active";N;s:25:"\x00App\Entity\Company\x00users";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\Company\x00address";N;s:31:"\x00App\Entity\Company\x00date_format";N;s:28:"\x00App\Entity\Company\x00languege";N;s:29:"\x00App\Entity\Company\x00currencie";s:3:"DZD";s:29:"\x00App\Entity\Company\x00time_zone";N;s:28:"\x00App\Entity\Company\x00expenses";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:37:"\x00App\Entity\Company\x00expenseCategories";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\Company\x00seasons";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:1:{i:0;O:17:"App\Entity\Season":21:{s:21:"\x00App\Entity\Season\x00id";O:26:"Symfony\Component\Uid\Ulid":1:{s:6:"\x00*\x00uid";s:26:"01K4G5N2KCQWFSZJRZZN4TE7K0";}s:23:"\x00App\Entity\Season\x00name";s:11:"Season 2025";s:30:"\x00App\Entity\Season\x00description";s:17:"Season par defaut";s:29:"\x00App\Entity\Season\x00start_date";O:8:"DateTime":3:{s:4:"date";s:26:"2025-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:27:"\x00App\Entity\Season\x00end_date";O:8:"DateTime":3:{s:4:"date";s:26:"2026-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:24:"\x00App\Entity\Season\x00owner";r:14;s:28:"\x00App\Entity\Season\x00is_active";b:1;s:32:"\x00App\Entity\Season\x00subscriptions";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:29:"\x00App\Entity\Season\x00classrooms";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:24:"\x00App\Entity\Season\x00tasks";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:29:"\x00App\Entity\Season\x00evenements";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\Season\x00payments";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\Season\x00expenses";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:35:"\x00App\Entity\Season\x00absenceEmployees";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\Season\x00children";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:32:"\x00App\Entity\Season\x00familyMembers";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Season\x00employees";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Season\x00pointings";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Season\x00createdAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:28:"\x00App\Entity\Season\x00updatedAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:28:"\x00App\Entity\Season\x00deletedAt";N;}}}s:14:"\x00*\x00initialized";b:1;}s:28:"\x00App\Entity\Company\x00services";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Company\x00sections";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:33:"\x00App\Entity\Company\x00familyMembers";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Company\x00children";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:29:"\x00App\Entity\Company\x00employees";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:33:"\x00App\Entity\Company\x00subscriptions";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:28:"\x00App\Entity\Company\x00payments";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:30:"\x00App\Entity\Company\x00classrooms";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:30:"\x00App\Entity\Company\x00evenements";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:25:"\x00App\Entity\Company\x00tasks";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:36:"\x00App\Entity\Company\x00absenceEmployees";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:25:"\x00App\Entity\Company\x00posts";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:30:"\x00App\Entity\Company\x00colleagues";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:31:"\x00App\Entity\Company\x00abonnements";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:1;}s:26:"\x00App\Entity\Company\x00orders";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:31:"\x00App\Entity\Company\x00prechildren";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:29:"\x00App\Entity\Company\x00pointings";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:30:"\x00App\Entity\Company\x00activities";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:29:"\x00App\Entity\Company\x00createdAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:29:"\x00App\Entity\Company\x00updatedAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-06 18:47:08.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:29:"\x00App\Entity\Company\x00deletedAt";N;}s:23:"\x00App\Entity\User\x00orders";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:30:"\x00App\Entity\User\x00subscriptions";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:25:"\x00App\Entity\User\x00payments";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:22:"\x00App\Entity\User\x00posts";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:22:"\x00App\Entity\User\x00photo";s:96:"https://lh3.googleusercontent.com/a/ACg8ocLi7dBM-hXkFbhFnT1iGMD9PdC9gOQy5-1rtFwzzEoLD0-NyA=s96-c";s:26:"\x00App\Entity\User\x00google_id";s:21:"110047819073318968968";s:28:"\x00App\Entity\User\x00facebook_id";N;s:26:"\x00App\Entity\User\x00pointings";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:33:"\x00App\Entity\User\x00absenceEmployees";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:27:"\x00App\Entity\User\x00last_login";O:8:"DateTime":3:{s:4:"date";s:26:"2025-09-14 10:03:50.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:27:"\x00App\Entity\User\x00activities";O:33:"Doctrine\ORM\PersistentCollection":2:{s:13:"\x00*\x00collection";O:43:"Doctrine\Common\Collections\ArrayCollection":1:{s:53:"\x00Doctrine\Common\Collections\ArrayCollection\x00elements";a:0:{}}s:14:"\x00*\x00initialized";b:0;}s:22:"\x00App\Entity\User\x00phone";N;s:25:"\x00App\Entity\User\x00isActive";b:1;s:26:"\x00App\Entity\User\x00createdAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-06 18:46:10.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:26:"\x00App\Entity\User\x00updatedAt";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-09-14 10:03:50.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:26:"\x00App\Entity\User\x00deletedAt";N;}i:1;b:1;i:2;N;i:3;a:0:{}i:4;a:2:{i:0;s:10:"ROLE_OWNER";i:1;s:9:"ROLE_USER";}}}"
knpu.oauth2_client_state
"e3b2c4b09d11f68d82e791992c255729"

Session Usage

6 Usages
Stateless check enabled
Usage
App\EventSubscriber\LocaleSubscriber:31
[
  [
    "file" => "/var/www/clevernursery.com/src/EventSubscriber/LocaleSubscriber.php"
    "line" => 31
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelRequest"
    "class" => "App\EventSubscriber\LocaleSubscriber"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 139
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:41
[
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 41
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-http/Firewall/AccessListener.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 46
    "function" => "authenticate"
    "class" => "Symfony\Component\Security\Http\Firewall\AccessListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-bundle/Security/LazyFirewallContext.php"
    "line" => 60
    "function" => "authenticate"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 70
    "function" => "__invoke"
    "class" => "Symfony\Bundle\SecurityBundle\Security\LazyFirewallContext"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-http/Firewall.php"
    "line" => 92
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 139
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:76
[
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 76
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 71
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/ResolvedFormType.php"
    "line" => 125
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 86
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/ResolvedFormType.php"
    "line" => 119
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 86
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Form.php"
    "line" => 908
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/src/Controller/App/PaymentController.php"
    "line" => 60
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "App\Controller\App\PaymentController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:66
[
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 66
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 76
    "function" => "setToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/ResolvedFormType.php"
    "line" => 125
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 86
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/ResolvedFormType.php"
    "line" => 119
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 86
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/Form.php"
    "line" => 908
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/src/Controller/App/PaymentController.php"
    "line" => 60
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "App\Controller\App\PaymentController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:52
[
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 52
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/FormRenderer.php"
    "line" => 56
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4e/4e8ef7410ae81da509311b2624e727a7.php"
    "line" => 80
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_aaeb18960a6c3ee4ef5cb695bcc27257"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4a/4a8074fe0d18a63f126e8767b4ed7f2e.php"
    "line" => 143
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 171
    "function" => "block_content"
    "class" => "__TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php"
    "line" => 456
    "function" => "displayBlock"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 171
    "function" => "block_body"
    "class" => "__TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/29/29f8d8f3b5b06f2e996adbe741c0e780.php"
    "line" => 102
    "function" => "displayBlock"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_5cce8ba884d530b89152b06af4728a60"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php"
    "line" => 49
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4a/4a8074fe0d18a63f126e8767b4ed7f2e.php"
    "line" => 49
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 379
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Environment.php"
    "line" => 280
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 242
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 253
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/src/Controller/App/PaymentController.php"
    "line" => 58
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "App\Controller\App\PaymentController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:56
[
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 56
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/form/FormRenderer.php"
    "line" => 56
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4e/4e8ef7410ae81da509311b2624e727a7.php"
    "line" => 80
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_aaeb18960a6c3ee4ef5cb695bcc27257"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4a/4a8074fe0d18a63f126e8767b4ed7f2e.php"
    "line" => 143
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 171
    "function" => "block_content"
    "class" => "__TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php"
    "line" => 456
    "function" => "displayBlock"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 171
    "function" => "block_body"
    "class" => "__TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/29/29f8d8f3b5b06f2e996adbe741c0e780.php"
    "line" => 102
    "function" => "displayBlock"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_5cce8ba884d530b89152b06af4728a60"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/73/73d229f26e2612106b1af9871694b12b.php"
    "line" => 49
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6b0ed14a0d44248c529b3b4ba489f9a5"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/var/cache/dev/twig/4a/4a8074fe0d18a63f126e8767b4ed7f2e.php"
    "line" => 49
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 394
    "function" => "doDisplay"
    "class" => "__TwigTemplate_e0181f4e9fdd0f7e7d42a15300ce4f8c"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 367
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Template.php"
    "line" => 379
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/twig/twig/src/Environment.php"
    "line" => 280
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 242
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 253
    "function" => "renderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/src/Controller/App/PaymentController.php"
    "line" => 58
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "App\Controller\App\PaymentController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/http-kernel/Kernel.php"
    "line" => 184
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/clevernursery.com/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/clevernursery.com/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
APP_ENV
"dev"
APP_SECRET
"dcf2e89fddf2ba09fb25a5582a777a8e"
CORS_ALLOW_ORIGIN
"^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$"
DATABASE_URL
"postgresql://medicaalgerie:[email protected]:5432/clevernursery?serverVersion=12&charset=utf8"
JWT_PASSPHRASE
"7bfc5e8427b7830392f4f3e143105f2b"
JWT_PUBLIC_KEY
"%kernel.project_dir%/config/jwt/public.pem"
JWT_SECRET_KEY
"%kernel.project_dir%/config/jwt/private.pem"
MAILER_DSN
"null://null"
MESSENGER_TRANSPORT_DSN
"doctrine://default?auto_setup=0"
OAUTH_FACEBOOK_ID
"3119588744928385"
OAUTH_FACEBOOK_SECRET
"11fc665a4ca260e2574d4987c5904c15"
OAUTH_GOOGLE_CLIENT_ID
"1005499217043-um6ob6s9bsahqgt0ahqka7bec68quaem.apps.googleusercontent.com"
OAUTH_GOOGLE_CLIENT_SECRET
"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"

Defined as regular env variables

Key Value
APP_DEBUG
"1"
CONTENT_LENGTH
""
CONTENT_TYPE
""
DOCUMENT_ROOT
"/var/www/clevernursery.com/public"
DOCUMENT_URI
"/index.php"
FCGI_ROLE
"RESPONDER"
GATEWAY_INTERFACE
"CGI/1.1"
HOME
"/var/www"
HTTPS
"on"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
HTTP_ACCEPT_ENCODING
"gzip, br"
HTTP_ACCEPT_LANGUAGE
"fr,fr-FR;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"
HTTP_CDN_LOOP
"cloudflare; loops=1"
HTTP_CF_CONNECTING_IP
"197.7.226.54"
HTTP_CF_IPCOUNTRY
"TN"
HTTP_CF_RAY
"97ef0f435c4d531c-MRS"
HTTP_CF_VISITOR
"{"scheme":"https"}"
HTTP_CONNECTION
"Keep-Alive"
HTTP_COOKIE
"_ga=GA1.1.1487819935.1757184310; crisp-client%2Fsession%2Fae01a7e0-e35d-4797-8f8c-e759054ddf19=session_6140a576-bca8-4ee2-a0b9-40865f9e34d5; PHPSESSID=6pli7euvhjdoekofsj1doc4h9j; _ga_27CFP3ZTXH=GS2.1.s1757813311$o21$g1$t1757813341$j30$l0$h0"
HTTP_HOST
"clevernursery.com"
HTTP_PRIORITY
"u=0, i"
HTTP_SEC_CH_UA
""Chromium";v="140", "Not=A?Brand";v="24", "Microsoft Edge";v="140""
HTTP_SEC_CH_UA_MOBILE
"?0"
HTTP_SEC_CH_UA_PLATFORM
""Windows""
HTTP_SEC_FETCH_DEST
"document"
HTTP_SEC_FETCH_MODE
"navigate"
HTTP_SEC_FETCH_SITE
"none"
HTTP_UPGRADE_INSECURE_REQUESTS
"1"
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0"
HTTP_X_FORWARDED_FOR
"197.7.226.54"
HTTP_X_FORWARDED_PROTO
"https"
PATH_INFO
""
PHP_SELF
"/index.php"
QUERY_STRING
"q=/app/payment/&"
REDIRECT_STATUS
"200"
REMOTE_ADDR
"162.158.23.46"
REMOTE_PORT
"62094"
REMOTE_USER
""
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1757844260
REQUEST_TIME_FLOAT
1757844260.4313
REQUEST_URI
"/app/payment/"
SCRIPT_FILENAME
"/var/www/clevernursery.com/public/index.php"
SCRIPT_NAME
"/index.php"
SERVER_ADDR
"144.91.92.76"
SERVER_NAME
"clevernursery.com"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"nginx/1.24.0"
SYMFONY_DOTENV_VARS
"APP_ENV,APP_SECRET,MESSENGER_TRANSPORT_DSN,DATABASE_URL,MAILER_DSN,CORS_ALLOW_ORIGIN,JWT_SECRET_KEY,JWT_PUBLIC_KEY,JWT_PASSPHRASE,OAUTH_FACEBOOK_ID,OAUTH_FACEBOOK_SECRET,OAUTH_GOOGLE_CLIENT_ID,OAUTH_GOOGLE_CLIENT_SECRET"
USER
"www-data"

Parent Request

Return to parent request (token = cd9870)

Key Value
_controller
"App\Controller\App\PaymentController::index"
_firewall_context
"security.firewall.map.context.main"
_links
Symfony\Component\WebLink\GenericLinkProvider {#3343
  -links: [
    3342 => Symfony\Component\WebLink\Link {#3342
      -href: "https://clevernursery.com/api/docs.jsonld"
      -rel: [
        "http://www.w3.org/ns/hydra/core#apiDocumentation" => "http://www.w3.org/ns/hydra/core#apiDocumentation"
      ]
      -attributes: []
    }
  ]
}
_remove_csp_headers
true
_route
"app_payment_index"
_route_params
[]
_security_firewall_run
"_security_main"
_stopwatch_token
"dc1f0d"