Menu

Formulir Permohonan Informasi Publik

Debug is enabled. Check the Dump panel in the Symfony Toolbar for details.
Loading…
Loading the web debug toolbar…
Attempt #
Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied

Exception

ErrorException

  1.                 } finally {
  2.                     $messages->replace($intlMessages$intlDomain);
  3.                 }
  4.             }
  5.             file_put_contents($fullpath$this->formatCatalogue($messages$domain$options));
  6.         }
  7.     }
  8.     /**
  9.      * Transforms a domain of a message catalogue to its string representation.
  1.         if (isset($options['path']) && !is_dir($options['path']) && !@mkdir($options['path'], 0777true) && !is_dir($options['path'])) {
  2.             throw new RuntimeException(sprintf('Translation Writer was not able to create directory "%s".'$options['path']));
  3.         }
  4.         // save
  5.         $dumper->dump($catalogue$options);
  6.     }
  7. }
  1.                 $options['path'] = str_replace($matches[0], ''$path);
  2.                 $this->writer->write($catalogue$matches[2], $options);
  3.                 $written true;
  4.             } elseif (preg_match($searchPatternWithoutIntl$path$matches)) {
  5.                 $options['path'] = str_replace($matches[0], ''$path);
  6.                 $this->writer->write($catalogue$matches[1], $options);
  7.                 $written true;
  8.             }
  9.         }
  10.         if ($written) {
  1.     public function create(MessageInterface $m): void
  2.     {
  3.         $catalogue $this->getCatalogue($m->getLocale());
  4.         if (!$catalogue->defines($m->getKey(), $m->getDomain())) {
  5.             $catalogue->set($m->getKey(), $m->getTranslation(), $m->getDomain());
  6.             $this->writeCatalogue($catalogue$m->getLocale(), $m->getDomain());
  7.         }
  8.     }
  9.     /**
  10.      * {@inheritdoc}
  1.         }
  2.         foreach ([$this->localStorages$this->remoteStorages] as $storages) {
  3.             /** @var Storage $storage */
  4.             foreach ($storages as $storage) {
  5.                 $storage->create($message);
  6.             }
  7.         }
  8.     }
  9.     /**
  1.         $messages $this->dataCollector->getCollectedMessages();
  2.         foreach ($messages as $message) {
  3.             if (DataCollectorTranslator::MESSAGE_MISSING === $message['state']) {
  4.                 $m = new Message($message['id'], $message['domain'], $message['locale'], $message['translation']);
  5.                 $this->storage->create($m);
  6.             }
  7.         }
  8.     }
  9. }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 159)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
Kernel->terminate(object(Request), object(Response)) in public/index.php (line 39)
  1. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 10:28:01 php User Deprecated: Using the WebserverBundle is deprecated since Symfony 4.4. The new Symfony local server has more features, you can use it instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Bridge\Symfony\Routing\IriConverter" is deprecated, use ApiPlatform\Symfony\Routing\IriConverter instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: The $exceptionOnNoToken parameter in "ApiPlatform\Symfony\Security\ResourceAccessChecker::__construct()" is deprecated and will always be false in 3.0, you should stop using it.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: The listener "ApiPlatform\Core\EventListener\ReadListener" is deprecated and will be replaced by "ApiPlatform\Symfony\EventListener\ReadListener" in 3.0.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 10:28:01 request Matched route "record".
{
    "route": "record",
    "route_parameters": {
        "_route": "record",
        "contentTypeSlug": "page",
        "_controller": "Bolt\\Controller\\Frontend\\DetailController::record",
        "slugOrId": "formulir-permohonan-informasi-publik"
    },
    "request_uri": "https://ppid.rspadgs.net/page/formulir-permohonan-informasi-publik",
    "method": "GET"
}
DEBUG 10:28:01 doctrine update bolt_content SET status = 'published', published_at = :now WHERE status = 'timed' AND published_at < :now
{
    ":now": "2024-05-08T10:28:01.428618Z"
}
DEBUG 10:28:01 doctrine update bolt_content SET status = 'held', depublished_at = :now WHERE status = 'published' AND depublished_at < :now
{
    ":now": "2024-05-08T10:28:01.428618Z"
}
DEBUG 10:28:01 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 10:28:01 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Bolt\\Security\\LoginFormAuthenticator"
}
DEBUG 10:28:01 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Bolt\\Security\\LoginFormAuthenticator"
}
DEBUG 10:28:01 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 10:28:01 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\WidgetSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\WidgetSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\ZoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\ZoneSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\TimedPublishSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\TimedPublishSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformPaginationParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformPaginationParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformSortingParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformSortingParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFieldsetsParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFieldsetsParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFilteringParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFilteringParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\CanonicalSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\CanonicalSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\EntityServiceProvider::run".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\EntityServiceProvider::run"
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\ExtensionSubscriber::onKernelResponse".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\ExtensionSubscriber::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\MaintenanceModeSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\MaintenanceModeSubscriber::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 10:28:01 doctrine SELECT b0_.id AS id_0, b0_.content_type AS content_type_1, b0_.status AS status_2, b0_.created_at AS created_at_3, b0_.modified_at AS modified_at_4, b0_.published_at AS published_at_5, b0_.depublished_at AS depublished_at_6, b0_.author_id AS author_id_7 FROM bolt_content b0_ INNER JOIN bolt_field b1_ ON b0_.id = b1_.content_id AND b1_.type IN ('generic', 'select', 'block', 'checkbox', 'collection', 'data', 'date', 'email', 'embed', 'file', 'filelist', 'hidden', 'html', 'image', 'imagelist', 'markdown', 'number', 'set', 'slug', 'templateselect', 'text', 'textarea', 'article', 'seo', 'redactor') INNER JOIN bolt_field b2_ ON (b1_.id = b2_.id) AND b2_.type IN ('slug') INNER JOIN bolt_field_translation b3_ ON b1_.id = b3_.translatable_id WHERE CAST(JSON_UNQUOTE(JSON_EXTRACT(b3_.value, '$[0]')) AS CHAR) = ? AND b0_.content_type = ? LIMIT 1
[
    "formulir-permohonan-inform [...]",
    "pages"
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.sortorder AS sortorder_3, t0.version AS version_4, t0.content_id AS content_id_5, t7.id AS id_6, t7.content_type AS content_type_8, t7.status AS status_9, t7.created_at AS created_at_10, t7.modified_at AS modified_at_11, t7.published_at AS published_at_12, t7.depublished_at AS depublished_at_13, t7.author_id AS author_id_14, t0.parent_id AS parent_id_15, t0.type FROM bolt_field t0 INNER JOIN bolt_content t7 ON t0.content_id = t7.id WHERE t0.content_id = ? AND t0.type IN ('generic', 'select', 'block', 'checkbox', 'collection', 'data', 'date', 'email', 'embed', 'file', 'filelist', 'hidden', 'html', 'image', 'imagelist', 'markdown', 'number', 'set', 'slug', 'templateselect', 'text', 'textarea', 'article', 'seo', 'redactor') ORDER BY t0.sortorder ASC
[
    84
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.display_name AS display_name_2, t0.username AS username_3, t0.email AS email_4, t0.password AS password_5, t0.roles AS roles_6, t0.lastseen_at AS lastseen_at_7, t0.last_ip AS last_ip_8, t0.locale AS locale_9, t0.backend_theme AS backend_theme_10, t0.status AS status_11, t0.avatar AS avatar_12, t13.id AS id_14, t13.useragent AS useragent_15, t13.validity AS validity_16, t13.user_id AS user_id_17 FROM bolt_user t0 LEFT JOIN bolt_user_auth_token t13 ON t13.user_id = t0.id WHERE t0.id IN (?)
[
    [
        1
    ]
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    585
]
INFO 10:28:01 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    586
]
DEBUG 10:28:01 doctrine SELECT b0_.id AS id_0, b0_.content_type AS content_type_1, b0_.status AS status_2, b0_.created_at AS created_at_3, b0_.modified_at AS modified_at_4, b0_.published_at AS published_at_5, b0_.depublished_at AS depublished_at_6, b0_.author_id AS author_id_7 FROM bolt_content b0_ INNER JOIN bolt_field b1_ ON b0_.id = b1_.content_id AND b1_.type IN ('generic', 'select', 'block', 'checkbox', 'collection', 'data', 'date', 'email', 'embed', 'file', 'filelist', 'hidden', 'html', 'image', 'imagelist', 'markdown', 'number', 'set', 'slug', 'templateselect', 'text', 'textarea', 'article', 'seo', 'redactor') INNER JOIN bolt_field b2_ ON (b1_.id = b2_.id) AND b2_.type IN ('slug') INNER JOIN bolt_field_translation b3_ ON b1_.id = b3_.translatable_id WHERE CAST(JSON_UNQUOTE(JSON_EXTRACT(b3_.value, '$[0]')) AS CHAR) = ? LIMIT 1
[
    "formulir-permohonan-inform [...]"
]
DEBUG 10:28:01 doctrine SELECT b0_.id AS id_0, b0_.content_type AS content_type_1, b0_.status AS status_2, b0_.created_at AS created_at_3, b0_.modified_at AS modified_at_4, b0_.published_at AS published_at_5, b0_.depublished_at AS depublished_at_6, b0_.author_id AS author_id_7 FROM bolt_content b0_ WHERE b0_.content_type = ? AND b0_.status = ? ORDER BY b0_.published_at DESC LIMIT 1
[
    "settings",
    "published"
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.sortorder AS sortorder_3, t0.version AS version_4, t0.content_id AS content_id_5, t7.id AS id_6, t7.content_type AS content_type_8, t7.status AS status_9, t7.created_at AS created_at_10, t7.modified_at AS modified_at_11, t7.published_at AS published_at_12, t7.depublished_at AS depublished_at_13, t7.author_id AS author_id_14, t0.parent_id AS parent_id_15, t0.type FROM bolt_field t0 INNER JOIN bolt_content t7 ON t0.content_id = t7.id WHERE t0.content_id = ? AND t0.type IN ('generic', 'select', 'block', 'checkbox', 'collection', 'data', 'date', 'email', 'embed', 'file', 'filelist', 'hidden', 'html', 'image', 'imagelist', 'markdown', 'number', 'set', 'slug', 'templateselect', 'text', 'textarea', 'article', 'seo', 'redactor') ORDER BY t0.sortorder ASC
[
    2
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    584
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    592
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    591
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    589
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    11
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    8
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    590
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    593
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    9
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    13
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    12
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    10
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    14
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    15
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    16
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    17
]
DEBUG 10:28:01 doctrine SELECT t0.id AS id_1, t0.value AS value_2, t0.locale AS locale_3, t0.translatable_id AS translatable_id_4 FROM bolt_field_translation t0 WHERE t0.translatable_id = ?
[
    18
]
DEBUG 10:28:01 event Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Bolt\Event\Subscriber\ProcessWidgetsQueueSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Bolt\\Event\\Subscriber\\ProcessWidgetsQueueSubscriber::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 10:28:01 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
CRITICAL 10:28:01 request Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied" at /home/ppid/vendor/symfony/translation/Dumper/FileDumper.php line 83
{
    "exception": {}
}
DEBUG 10:28:01 event Notified event "kernel.terminate" to listener "Translation\Bundle\EventListener\AutoAddMissingTranslations::onTerminate".
{
    "event": "kernel.terminate",
    "listener": "Translation\\Bundle\\EventListener\\AutoAddMissingTranslations::onTerminate"
}
WARNING 10:28:01 php Uncaught Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied
{
    "exception": {}
}
DEBUG 10:28:01 doctrine update bolt_content SET status = 'published', published_at = :now WHERE status = 'timed' AND published_at < :now
{
    ":now": "2024-05-08T10:28:01.580521Z"
}
DEBUG 10:28:01 doctrine update bolt_content SET status = 'held', depublished_at = :now WHERE status = 'published' AND depublished_at < :now
{
    ":now": "2024-05-08T10:28:01.580521Z"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\WidgetSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\WidgetSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\ZoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\ZoneSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\TimedPublishSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\TimedPublishSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformPaginationParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformPaginationParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformSortingParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformSortingParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFieldsetsParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFieldsetsParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFilteringParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFilteringParametersListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\CanonicalSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\CanonicalSubscriber::onKernelRequest"
}
DEBUG 10:28:01 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\EntityServiceProvider::run".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\EntityServiceProvider::run"
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 10:28:01 php User Deprecated: Since symfony/twig-bundle 5.2: Accessing the "twig" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\ExtensionSubscriber::onKernelResponse".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\ExtensionSubscriber::onKernelResponse"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\MaintenanceModeSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\MaintenanceModeSubscriber::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 10:28:01 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

ErrorException
ErrorException:
Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied

  at vendor/symfony/translation/Dumper/FileDumper.php:83
  at Symfony\Component\Translation\Dumper\FileDumper->dump(object(MessageCatalogue), array('xliff_version' => '2.0', 'path' => '/home/ppid/translations'))
     (vendor/symfony/translation/Writer/TranslationWriter.php:71)
  at Symfony\Component\Translation\Writer\TranslationWriter->write(object(MessageCatalogue), 'xlf', array('xliff_version' => '2.0', 'path' => '/home/ppid/translations'))
     (vendor/php-translation/symfony-storage/src/FileStorage.php:155)
  at Translation\SymfonyStorage\FileStorage->writeCatalogue(object(MessageCatalogue), 'en', 'messages')
     (vendor/php-translation/symfony-storage/src/FileStorage.php:91)
  at Translation\SymfonyStorage\FileStorage->create(object(Message))
     (vendor/php-translation/symfony-bundle/Service/StorageService.php:198)
  at Translation\Bundle\Service\StorageService->create(object(Message))
     (vendor/php-translation/symfony-bundle/EventListener/AutoAddMissingTranslations.php:54)
  at Translation\Bundle\EventListener\AutoAddMissingTranslations->onTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/http-kernel/HttpKernel.php:97)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (vendor/symfony/http-kernel/Kernel.php:159)
  at Symfony\Component\HttpKernel\Kernel->terminate(object(Request), object(Response))
     (public/index.php:39)                
Loading…
Loading the web debug toolbar…
Attempt #
Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied

Exception

ErrorException

  1.                 } finally {
  2.                     $messages->replace($intlMessages$intlDomain);
  3.                 }
  4.             }
  5.             file_put_contents($fullpath$this->formatCatalogue($messages$domain$options));
  6.         }
  7.     }
  8.     /**
  9.      * Transforms a domain of a message catalogue to its string representation.
  1.         if (isset($options['path']) && !is_dir($options['path']) && !@mkdir($options['path'], 0777true) && !is_dir($options['path'])) {
  2.             throw new RuntimeException(sprintf('Translation Writer was not able to create directory "%s".'$options['path']));
  3.         }
  4.         // save
  5.         $dumper->dump($catalogue$options);
  6.     }
  7. }
  1.                 $options['path'] = str_replace($matches[0], ''$path);
  2.                 $this->writer->write($catalogue$matches[2], $options);
  3.                 $written true;
  4.             } elseif (preg_match($searchPatternWithoutIntl$path$matches)) {
  5.                 $options['path'] = str_replace($matches[0], ''$path);
  6.                 $this->writer->write($catalogue$matches[1], $options);
  7.                 $written true;
  8.             }
  9.         }
  10.         if ($written) {
  1.     public function create(MessageInterface $m): void
  2.     {
  3.         $catalogue $this->getCatalogue($m->getLocale());
  4.         if (!$catalogue->defines($m->getKey(), $m->getDomain())) {
  5.             $catalogue->set($m->getKey(), $m->getTranslation(), $m->getDomain());
  6.             $this->writeCatalogue($catalogue$m->getLocale(), $m->getDomain());
  7.         }
  8.     }
  9.     /**
  10.      * {@inheritdoc}
  1.         }
  2.         foreach ([$this->localStorages$this->remoteStorages] as $storages) {
  3.             /** @var Storage $storage */
  4.             foreach ($storages as $storage) {
  5.                 $storage->create($message);
  6.             }
  7.         }
  8.     }
  9.     /**
  1.         $messages $this->dataCollector->getCollectedMessages();
  2.         foreach ($messages as $message) {
  3.             if (DataCollectorTranslator::MESSAGE_MISSING === $message['state']) {
  4.                 $m = new Message($message['id'], $message['domain'], $message['locale'], $message['translation']);
  5.                 $this->storage->create($m);
  6.             }
  7.         }
  8.     }
  9. }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         }
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /home/ppid/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 607)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException(object(ErrorException))

Stack Trace

ErrorException
ErrorException:
Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied

  at /home/ppid/vendor/symfony/translation/Dumper/FileDumper.php:83
  at Symfony\Component\Translation\Dumper\FileDumper->dump(object(MessageCatalogue), array('xliff_version' => '2.0', 'path' => '/home/ppid/translations'))
     (/home/ppid/vendor/symfony/translation/Writer/TranslationWriter.php:71)
  at Symfony\Component\Translation\Writer\TranslationWriter->write(object(MessageCatalogue), 'xlf', array('xliff_version' => '2.0', 'path' => '/home/ppid/translations'))
     (/home/ppid/vendor/php-translation/symfony-storage/src/FileStorage.php:155)
  at Translation\SymfonyStorage\FileStorage->writeCatalogue(object(MessageCatalogue), 'en', 'messages')
     (/home/ppid/vendor/php-translation/symfony-storage/src/FileStorage.php:91)
  at Translation\SymfonyStorage\FileStorage->create(object(Message))
     (/home/ppid/vendor/php-translation/symfony-bundle/Service/StorageService.php:198)
  at Translation\Bundle\Service\StorageService->create(object(Message))
     (/home/ppid/vendor/php-translation/symfony-bundle/EventListener/AutoAddMissingTranslations.php:54)
  at Translation\Bundle\EventListener\AutoAddMissingTranslations->onTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/ppid/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/ppid/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (/home/ppid/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/ppid/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/ppid/vendor/symfony/http-kernel/HttpKernel.php:97)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (/home/ppid/vendor/symfony/http-kernel/HttpKernel.php:124)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request))
     (/home/ppid/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:131)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(ErrorException))
     (/home/ppid/vendor/symfony/error-handler/ErrorHandler.php:607)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException))                
Extension.php on line 28:
Tightenco\Collect\Support\Collection {#5586
  #items: array:3 [
    "notification" => array:12 [
      "enabled" => true
      "debug" => false
      "debug_address" => "[email protected]"
      "debug_smtp" => true
      "subject" => "Formulir Permohonan Informasi"
      "subject_prefix" => "[PPID RSPADGS]"
      "replyto_name" => "{NAME}"
      "replyto_email" => "{EMAIL}"
      "to_name" => "PPID RSPAD Gatot Soebroto"
      "to_email" => "[email protected]"
      "from_name" => "PPID RSPAD Gatot Soebroto"
      "from_email" => "[email protected]"
    ]
    "feedback" => array:2 [
      "success" => "Message submission successful"
      "error" => "There are errors in the form, please fix before trying to resubmit"
    ]
    "fields" => array:20 [
      "nama_lengkap_pemohon_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nama Lengkap Pemohon Informasi"
          "attr" => array:3 [
            "placeholder" => "Nama Lengkap Pemohon Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 3
                "max" => 128
              ]
            ]
          ]
        ]
      ]
      "nomor_ktp_pemohon_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor KTP Pemohon Informasi"
          "attr" => array:3 [
            "placeholder" => "Nomor KTP Pemohon Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 16
                "max" => 16
              ]
            ]
          ]
        ]
      ]
      "foto_ktp_pemohon_informasi" => array:2 [
        "type" => "file"
        "options" => array:3 [
          "required" => true
          "label" => "Foto KTP Pemohon Informasi"
          "attr" => array:2 [
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
        ]
      ]
      "alamat_pemohon_informasi" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alamat Pemohon Informasi"
          "attr" => array:3 [
            "placeholder" => "Alamat Pemohon Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
        ]
      ]
      "nomor_telepon_pemohon_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor Telepon Pemohon Informasi"
          "attr" => array:4 [
            "placeholder" => "Nomor Telepon Pemohon Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "pattern" => "[0-9]+"
            "data-group" => "Data Pemohon Informasi"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "email_pemohon_informasi" => array:2 [
        "type" => "email"
        "options" => array:4 [
          "required" => true
          "label" => "Email Pemohon Informasi"
          "attr" => array:3 [
            "placeholder" => "Email Pemohon Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => "Email"
          ]
        ]
      ]
      "informasi_yang_dibutuhkan" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Informasi Yang Dibutuhkan"
          "attr" => array:3 [
            "placeholder" => "Informasi Yang Dibutuhkan"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
        ]
      ]
      "alasan_permintaan" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alasan Permintaan"
          "attr" => array:3 [
            "placeholder" => "Alasan Permintaan"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
            "data-group" => "Data Pemohon Informasi"
          ]
        ]
      ]
      "nama_lengkap_pengguna_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nama Lengkap Pengguna Informasi"
          "attr" => array:3 [
            "placeholder" => "Nama Lengkap Pengguna Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 3
                "max" => 128
              ]
            ]
          ]
        ]
      ]
      "nomor_ktp_pengguna_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor KTP Pengguna Informasi"
          "attr" => array:3 [
            "placeholder" => "Nomor KTP Pengguna Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 16
                "max" => 16
              ]
            ]
          ]
        ]
      ]
      "foto_ktp_pengguna_informasi" => array:2 [
        "type" => "file"
        "options" => array:3 [
          "required" => true
          "label" => "Foto KTP Pengguna Informasi"
          "attr" => array:2 [
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "alamat_pengguna_informasi" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alamat Pengguna Informasi"
          "attr" => array:3 [
            "placeholder" => "Alamat Pengguna Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "nomor_telepon_pengguna_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor Telepon Pengguna Informasi"
          "attr" => array:4 [
            "placeholder" => "Nomor Telepon Pengguna Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "pattern" => "[0-9]+"
            "data-group" => "Data Pengguna Informasi"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "email_pengguna_informasi" => array:2 [
        "type" => "email"
        "options" => array:4 [
          "required" => true
          "label" => "Email Pengguna Informasi"
          "attr" => array:3 [
            "placeholder" => "Email Pengguna Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => "Email"
          ]
        ]
      ]
      "alasan_penggunaan_informasi" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alasan Penggunaan Informasi"
          "attr" => array:3 [
            "placeholder" => "Alasan Penggunaan Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "cara_memperoleh_informasi" => array:2 [
        "type" => "choice"
        "options" => array:6 [
          "required" => true
          "expanded" => true
          "multiple" => true
          "label" => "Cara Memperoleh Informasi"
          "choices" => array:5 [
            "Langsung" => "langsung"
            "Website" => "website"
            "E-Mail" => "email"
            "Fax" => "fax"
            "Via Pos" => "via_pos"
          ]
          "attr" => array:2 [
            "data-checkbox" => ""
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "format_bahan_informasi" => array:2 [
        "type" => "choice"
        "options" => array:6 [
          "required" => true
          "expanded" => true
          "multiple" => true
          "label" => "Format Bahan Informasi"
          "choices" => array:2 [
            "Tercetak" => "tercetak"
            "Terekam" => "terekam"
          ]
          "attr" => array:2 [
            "data-checkbox" => ""
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "cara_mengirim_bahan_informasi" => array:2 [
        "type" => "choice"
        "options" => array:6 [
          "required" => true
          "expanded" => true
          "multiple" => true
          "label" => "Cara Mengirim Bahan Informasi"
          "choices" => array:3 [
            "Langsung" => "langsung"
            "Via Pos" => "via_pos"
            "E-Mail" => "email"
          ]
          "attr" => array:2 [
            "data-checkbox" => ""
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "konfirmasi" => array:2 [
        "type" => "choice"
        "options" => array:6 [
          "required" => true
          "expanded" => true
          "multiple" => false
          "label" => "Data dan informasi yang kami peroleh, kami gunakan sesuai dengan ketentuan perundang-undangan yang berlaku."
          "choices" => array:1 [
            "Setuju" => "setuju"
          ]
          "attr" => array:2 [
            "data-checkbox" => ""
            "data-group" => "Data Pengguna Informasi"
          ]
        ]
      ]
      "submit" => array:2 [
        "type" => "submit"
        "options" => array:2 [
          "label" => "Kirim"
          "attr" => array:1 [
            "class" => "w-full flex flex-row items-center justify-center transition-all bg-curious-blue-950 text-white py-2 px-4 rounded-md mb-4"
          ]
        ]
      ]
    ]
  ]
  #escapeWhenCastingToString: false
}
Extension.php on line 28:
Symfony\Component\Form\Form {#5890
  -config: Symfony\Component\Form\FormBuilder {#5891
    -children: []
    -unresolvedChildren: []
    #locked: true
    -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6099 …1}
    -name: "form-permohonan"
    -propertyPath: null
    -mapped: true
    -byReference: true
    -inheritData: false
    -compound: true
    -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5588
      -proxiedType: Symfony\Component\Form\ResolvedFormType {#5587
        -innerType: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
        -typeExtensions: array:6 [
          0 => Symfony\Component\Form\Extension\Core\Type\TransformationFailureExtension {#5585
            -translator: Symfony\Component\Translation\DataCollectorTranslator {#229 …}
          }
          1 => Symfony\Component\Form\Extension\HttpFoundation\Type\FormTypeHttpFoundationExtension {#5581
            -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578
              -serverParams: Symfony\Component\Form\Util\ServerParams {#5577
                -requestStack: Symfony\Component\HttpFoundation\RequestStack {#169
                  -requests: array:1 [
                    0 => Symfony\Component\HttpFoundation\Request {#16 …27}
                  ]
                }
              }
            }
          }
          2 => Symfony\Component\Form\Extension\Validator\Type\FormTypeValidatorExtension {#5582
            -validator: Symfony\Component\Validator\Validator\TraceableValidator {#1103 …2}
            -violationMapper: Symfony\Component\Form\Extension\Validator\ViolationMapper\ViolationMapper {#5591 …3}
            -legacyErrorMessages: true
          }
          3 => Symfony\Component\Form\Extension\Validator\Type\UploadValidatorExtension {#5592 …}
          4 => Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension {#5593
            -defaultTokenManager: Symfony\Component\Security\Csrf\CsrfTokenManager {#1002
              -generator: Symfony\Component\Security\Csrf\TokenGenerator\UriSafeTokenGenerator {#1038
                -entropy: 256
              }
              -storage: Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage {#1039
                -requestStack: Symfony\Component\HttpFoundation\RequestStack {#169}
                -namespace: "_csrf"
                -session: null
              }
              -namespace: Closure() {#1041
                class: "Symfony\Component\Security\Csrf\CsrfTokenManager"
                this: Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                use: {
                  $namespace: Symfony\Component\HttpFoundation\RequestStack {#169}
                  $superGlobalNamespaceGenerator: Closure() {#1040}
                }
              }
            }
            -defaultEnabled: true
            -defaultFieldName: "_token"
            -translator: Symfony\Component\Translation\DataCollectorTranslator {#229 …}
            -translationDomain: "validators"
            -serverParams: Symfony\Component\Form\Util\ServerParams {#5577}
          }
          5 => Symfony\Component\Form\Extension\DataCollector\Type\DataCollectorTypeExtension {#5594
            -listener: Symfony\Component\Form\Extension\DataCollector\EventListener\DataCollectorListener {#5595 …1}
          }
        ]
        -parent: null
        -optionsResolver: Symfony\Component\OptionsResolver\OptionsResolver {#5596
          -defined: array:51 [
            "block_name" => true
            "block_prefix" => true
            "disabled" => true
            "label" => true
            "label_format" => true
            "row_attr" => true
            "label_html" => true
            "label_translation_parameters" => true
            "attr_translation_parameters" => true
            "attr" => true
            "translation_domain" => true
            "auto_initialize" => true
            "priority" => true
            "form_attr" => true
            "data" => true
            "data_class" => true
            "empty_data" => true
            "trim" => true
            "required" => true
            "property_path" => true
            "mapped" => true
            "by_reference" => true
            "error_bubbling" => true
            "label_attr" => true
            "inherit_data" => true
            "compound" => true
            "method" => true
            "action" => true
            "post_max_size_message" => true
            "upload_max_size_message" => true
            "allow_file_upload" => true
            "help" => true
            "help_attr" => true
            "help_html" => true
            "help_translation_parameters" => true
            "invalid_message" => true
            "invalid_message_parameters" => true
            "is_empty_callback" => true
            "getter" => true
            "setter" => true
            "validation_groups" => true
            "error_mapping" => true
            "constraints" => true
            "legacy_error_messages" => true
            "allow_extra_fields" => true
            "extra_fields_message" => true
            "csrf_protection" => true
            "csrf_field_name" => true
            "csrf_message" => true
            "csrf_token_manager" => true
            "csrf_token_id" => true
          ]
          -defaults: array:50 [
            "block_name" => null
            "block_prefix" => null
            "disabled" => false
            "label" => null
            "label_format" => null
            "row_attr" => []
            "label_html" => false
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "attr" => []
            "translation_domain" => null
            "auto_initialize" => true
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => null
            "trim" => true
            "required" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "error_bubbling" => null
            "label_attr" => []
            "inherit_data" => false
            "compound" => true
            "method" => "POST"
            "action" => ""
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "upload_max_size_message" => null
            "allow_file_upload" => false
            "help" => null
            "help_attr" => []
            "help_html" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "error_mapping" => []
            "constraints" => []
            "legacy_error_messages" => true
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
          ]
          -nested: []
          -required: []
          -resolved: array:29 [
            "block_name" => null
            "disabled" => false
            "label" => null
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "required" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => true
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
          ]
          -normalizers: array:3 [
            "validation_groups" => array:1 [ …1]
            "constraints" => array:1 [ …1]
            "upload_max_size_message" => array:1 [ …1]
          ]
          -allowedValues: []
          -allowedTypes: array:17 [
            "block_prefix" => array:2 [ …2]
            "attr" => array:1 [ …1]
            "row_attr" => array:1 [ …1]
            "label_html" => array:1 [ …1]
            "priority" => array:1 [ …1]
            "form_attr" => array:2 [ …2]
            "label_attr" => array:1 [ …1]
            "action" => array:1 [ …1]
            "upload_max_size_message" => array:1 [ …1]
            "help" => array:3 [ …3]
            "help_attr" => array:1 [ …1]
            "help_html" => array:1 [ …1]
            "is_empty_callback" => array:2 [ …2]
            "getter" => array:2 [ …2]
            "setter" => array:2 [ …2]
            "constraints" => array:2 [ …2]
            "legacy_error_messages" => array:1 [ …1]
          ]
          -info: array:3 [
            "priority" => "The form rendering priority (higher priorities will be rendered first)"
            "getter" => "A callable that accepts two arguments (the view data and the current form field) and must return a value."
            "setter" => "A callable that accepts three arguments (a reference to the view data, the submitted value and the current form field)."
          ]
          -lazy: array:4 [
            "data_class" => array:1 [ …1]
            "empty_data" => array:1 [ …1]
            "error_bubbling" => array:1 [ …1]
            "upload_max_size_message" => array:1 [ …1]
          ]
          -calling: []
          -deprecated: array:1 [
            "legacy_error_messages" => array:3 [ …3]
          ]
          -given: []
          -locked: false
          -parentsOptions: []
          -prototype: null
          -prototypeIndex: null
        }
      }
      -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560
        -dataExtractor: Symfony\Component\Form\Extension\DataCollector\FormDataExtractor {#5561}
        -dataByForm: array:33 [
          "000000003c1362ea000000003185bc86" => array:8 [
            "id" => "form-permohonan"
            "name" => "form-permohonan"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\FormType"
            "synchronized" => true
            "passed_options" => array:2 [ …2]
            "resolved_options" => array:51 [ …51]
            "default_data" => array:1 [ …1]
            "submitted_data" => []
          ]
          "000000003c1362ed000000003185bc86" => array:8 [
            "id" => "form-permohonan_nama_lengkap_pemohon_informasi"
            "name" => "nama_lengkap_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362e0000000003185bc86" => array:8 [
            "id" => "form-permohonan_nomor_ktp_pemohon_informasi"
            "name" => "nomor_ktp_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362e3000000003185bc86" => array:8 [
            "id" => "form-permohonan_foto_ktp_pemohon_informasi"
            "name" => "foto_ktp_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\FileType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:51 [ …51]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362e6000000003185bc86" => array:8 [
            "id" => "form-permohonan_alamat_pemohon_informasi"
            "name" => "alamat_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362f9000000003185bc86" => array:8 [
            "id" => "form-permohonan_nomor_telepon_pemohon_informasi"
            "name" => "nomor_telepon_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362fc000000003185bc86" => array:8 [
            "id" => "form-permohonan_email_pemohon_informasi"
            "name" => "email_pemohon_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\EmailType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362ff000000003185bc86" => array:8 [
            "id" => "form-permohonan_informasi_yang_dibutuhkan"
            "name" => "informasi_yang_dibutuhkan"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362f2000000003185bc86" => array:8 [
            "id" => "form-permohonan_alasan_permintaan"
            "name" => "alasan_permintaan"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362f5000000003185bc86" => array:8 [
            "id" => "form-permohonan_nama_lengkap_pengguna_informasi"
            "name" => "nama_lengkap_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362c8000000003185bc86" => array:8 [
            "id" => "form-permohonan_nomor_ktp_pengguna_informasi"
            "name" => "nomor_ktp_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362cb000000003185bc86" => array:8 [
            "id" => "form-permohonan_foto_ktp_pengguna_informasi"
            "name" => "foto_ktp_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\FileType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:51 [ …51]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362ce000000003185bc86" => array:8 [
            "id" => "form-permohonan_alamat_pengguna_informasi"
            "name" => "alamat_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362c1000000003185bc86" => array:8 [
            "id" => "form-permohonan_nomor_telepon_pengguna_informasi"
            "name" => "nomor_telepon_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362c4000000003185bc86" => array:8 [
            "id" => "form-permohonan_email_pengguna_informasi"
            "name" => "email_pengguna_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\EmailType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c1362c7000000003185bc86" => array:8 [
            "id" => "form-permohonan_alasan_penggunaan_informasi"
            "name" => "alasan_penggunaan_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
            "synchronized" => true
            "passed_options" => array:4 [ …4]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c13628e000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi"
            "name" => "cara_memperoleh_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\ChoiceType"
            "synchronized" => true
            "passed_options" => array:7 [ …7]
            "resolved_options" => array:64 [ …64]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136281000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi_0"
            "name" => "0"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136284000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi_1"
            "name" => "1"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136287000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi_2"
            "name" => "2"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c13629a000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi_3"
            "name" => "3"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c13629d000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_memperoleh_informasi_4"
            "name" => "4"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136262000000003185bc86" => array:8 [
            "id" => "form-permohonan_format_bahan_informasi"
            "name" => "format_bahan_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\ChoiceType"
            "synchronized" => true
            "passed_options" => array:7 [ …7]
            "resolved_options" => array:64 [ …64]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136265000000003185bc86" => array:8 [
            "id" => "form-permohonan_format_bahan_informasi_0"
            "name" => "0"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136278000000003185bc86" => array:8 [
            "id" => "form-permohonan_format_bahan_informasi_1"
            "name" => "1"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136246000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_mengirim_bahan_informasi"
            "name" => "cara_mengirim_bahan_informasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\ChoiceType"
            "synchronized" => true
            "passed_options" => array:7 [ …7]
            "resolved_options" => array:64 [ …64]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136259000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_mengirim_bahan_informasi_0"
            "name" => "0"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c13625c000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_mengirim_bahan_informasi_1"
            "name" => "1"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c13625f000000003185bc86" => array:8 [
            "id" => "form-permohonan_cara_mengirim_bahan_informasi_2"
            "name" => "2"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\CheckboxType"
            "synchronized" => true
            "passed_options" => array:8 [ …8]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136220000000003185bc86" => array:8 [
            "id" => "form-permohonan_konfirmasi"
            "name" => "konfirmasi"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\ChoiceType"
            "synchronized" => true
            "passed_options" => array:7 [ …7]
            "resolved_options" => array:64 [ …64]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136223000000003185bc86" => array:8 [
            "id" => "form-permohonan_konfirmasi_0"
            "name" => "0"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\RadioType"
            "synchronized" => true
            "passed_options" => array:7 [ …7]
            "resolved_options" => array:52 [ …52]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
          "000000003c136226000000003185bc86" => array:8 [
            "id" => "form-permohonan_submit"
            "name" => "submit"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\SubmitType"
            "synchronized" => true
            "passed_options" => array:2 [ …2]
            "resolved_options" => array:16 [ …16]
            "default_data" => array:1 [ …1]
            "submitted_data" => []
          ]
          "000000003c136238000000003185bc86" => array:8 [
            "id" => "form-permohonan_province_twitter_number"
            "name" => "province_twitter_number"
            "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
            "synchronized" => true
            "passed_options" => array:2 [ …2]
            "resolved_options" => array:50 [ …50]
            "default_data" => array:2 [ …2]
            "submitted_data" => []
          ]
        ]
        -dataByView: null
        -formsByView: null
        #data: array:3 [
          "forms" => []
          "forms_by_hash" => []
          "nb_errors" => 0
        ]
        -cloner: null
      }
    }
    -viewTransformers: []
    -modelTransformers: []
    -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\DataMapper {#5580
      -dataAccessor: Symfony\Component\Form\Extension\Core\DataAccessor\ChainAccessor {#5576
        -accessors: array:2 [
          0 => Symfony\Component\Form\Extension\Core\DataAccessor\CallbackAccessor {#5579}
          1 => Symfony\Component\Form\Extension\Core\DataAccessor\PropertyPathAccessor {#5583
            -propertyAccessor: Symfony\Component\PropertyAccess\PropertyAccessor {#1133 …9}
          }
        ]
      }
    }
    -required: true
    -disabled: false
    -errorBubbling: true
    -emptyData: Closure(FormInterface $form) {#5606
      class: "Symfony\Component\Form\Extension\Core\Type\FormType"
      this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
    }
    -attributes: array:1 [
      "data_collector/passed_options" => array:2 [
        "attr" => array:1 [
          "class" => "boltforms"
        ]
        "data" => []
      ]
    ]
    -data: []
    -dataClass: null
    -dataLocked: true
    -formFactory: Symfony\Component\Form\FormFactory {#5567
      -registry: Symfony\Component\Form\FormRegistry {#5521
        -extensions: array:1 [
          0 => Symfony\Component\Form\Extension\DependencyInjection\DependencyInjectionExtension {#5555
            -guesser: null
            -guesserLoaded: false
            -typeContainer: Symfony\Component\DependencyInjection\Argument\ServiceLocator {#5547 …8}
            -typeExtensionServices: array:3 [ …3]
            -guesserServices: Symfony\Component\DependencyInjection\Argument\RewindableGenerator {#5565 …2}
          }
        ]
        -types: array:10 [
          "Symfony\Component\Form\Extension\Core\Type\FormType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5588}
          "Symfony\Component\Form\Extension\Core\Type\TextType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5631 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\FileType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5652
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5653 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\TextareaType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5669 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\EmailType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5690
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5691 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\ChoiceType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5788
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5789 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\ButtonType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5871
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5874 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\SubmitType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5875
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5876 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\CheckboxType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5939
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5940 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\RadioType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#6075
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#6076 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
        ]
        -guesser: false
        -resolvedTypeFactory: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeFactoryDataCollectorProxy {#5529
          -proxiedFactory: Symfony\Component\Form\ResolvedFormTypeFactory {#5563}
          -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
        }
        -checkedTypes: []
      }
    }
    -action: ""
    -method: "POST"
    -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
    -autoInitialize: true
    -options: array:51 [
      "block_name" => null
      "disabled" => false
      "label" => null
      "label_format" => null
      "label_translation_parameters" => []
      "attr_translation_parameters" => []
      "translation_domain" => null
      "auto_initialize" => true
      "trim" => true
      "required" => true
      "property_path" => null
      "mapped" => true
      "by_reference" => true
      "inherit_data" => false
      "compound" => true
      "method" => "POST"
      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
      "allow_file_upload" => false
      "help_translation_parameters" => []
      "invalid_message" => "This value is not valid."
      "invalid_message_parameters" => []
      "error_mapping" => []
      "allow_extra_fields" => false
      "extra_fields_message" => "This form should not contain extra fields."
      "csrf_protection" => true
      "csrf_field_name" => "_token"
      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
      "csrf_token_id" => null
      "block_prefix" => null
      "row_attr" => []
      "label_html" => false
      "attr" => array:1 [
        "class" => "boltforms"
      ]
      "priority" => 0
      "form_attr" => false
      "data" => []
      "data_class" => null
      "empty_data" => Closure(FormInterface $form) {#5606}
      "error_bubbling" => true
      "label_attr" => []
      "action" => ""
      "upload_max_size_message" => Closure() {#5608
        class: "Symfony\Component\Form\Extension\Validator\Type\UploadValidatorExtension"
        this: Symfony\Component\Form\Extension\Validator\Type\UploadValidatorExtension {#5592 …}
        use: {
          $translator: Symfony\Component\Translation\DataCollectorTranslator {#229 …}
          $translationDomain: "validators"
          $message: Closure() {#5607 …}
        }
      }
      "help" => null
      "help_attr" => []
      "help_html" => false
      "is_empty_callback" => null
      "getter" => null
      "setter" => null
      "validation_groups" => null
      "constraints" => []
      "legacy_error_messages" => true
    ]
    -isEmptyCallback: null
  }
  -parent: null
  -children: Symfony\Component\Form\Util\OrderedHashMap {#5892
    -elements: array:21 [
      "nama_lengkap_pemohon_informasi" => Symfony\Component\Form\Form {#5893
        -config: Symfony\Component\Form\FormBuilder {#5894
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6110 …1}
          -name: "nama_lengkap_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5634
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nama Lengkap Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5634}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5636 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5895
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nama_lengkap_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_ktp_pemohon_informasi" => Symfony\Component\Form\Form {#5896
        -config: Symfony\Component\Form\FormBuilder {#5897
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6111 …1}
          -name: "nomor_ktp_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5643
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nomor KTP Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5643}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5645 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5898
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_ktp_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "foto_ktp_pemohon_informasi" => Symfony\Component\Form\Form {#5899
        -config: Symfony\Component\Form\FormBuilder {#5900
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6113 …1}
          -name: "foto_ktp_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5652}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: null
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: "Symfony\Component\HttpFoundation\File\File"
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:51 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => true
            "help_translation_parameters" => []
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "multiple" => false
            "block_prefix" => null
            "label" => "Foto KTP Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => "Symfony\Component\HttpFoundation\File\File"
            "empty_data" => null
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5658 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "legacy_error_messages" => true
            "invalid_message" => "This value is not valid."
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5901
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "foto_ktp_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "alamat_pemohon_informasi" => Symfony\Component\Form\Form {#5902
        -config: Symfony\Component\Form\FormBuilder {#5903
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6115 …1}
          -name: "alamat_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5672
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Alamat Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5672}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5674 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5904
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alamat_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_telepon_pemohon_informasi" => Symfony\Component\Form\Form {#5905
        -config: Symfony\Component\Form\FormBuilder {#5906
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6117 …1}
          -name: "nomor_telepon_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5681
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nomor Telepon Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:4 [ …4]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5681}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5683 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:1 [ …1]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5907
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_telepon_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "email_pemohon_informasi" => Symfony\Component\Form\Form {#5908
        -config: Symfony\Component\Form\FormBuilder {#5909
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6119 …1}
          -name: "email_pemohon_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5690}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5695
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Email Pemohon Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5695}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5697 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "legacy_error_messages" => true
            "invalid_message" => "This value is not valid."
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5910
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "email_pemohon_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "informasi_yang_dibutuhkan" => Symfony\Component\Form\Form {#5911
        -config: Symfony\Component\Form\FormBuilder {#5912
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6121 …1}
          -name: "informasi_yang_dibutuhkan"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5704
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Informasi Yang Dibutuhkan"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5704}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5706 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5913
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "informasi_yang_dibutuhkan"
        -inheritData: false
        -propertyPath: null
      }
      "alasan_permintaan" => Symfony\Component\Form\Form {#5914
        -config: Symfony\Component\Form\FormBuilder {#5915
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6123 …1}
          -name: "alasan_permintaan"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5713
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Alasan Permintaan"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5713}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5715 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5916
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alasan_permintaan"
        -inheritData: false
        -propertyPath: null
      }
      "nama_lengkap_pengguna_informasi" => Symfony\Component\Form\Form {#5917
        -config: Symfony\Component\Form\FormBuilder {#5918
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6125 …1}
          -name: "nama_lengkap_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5722
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nama Lengkap Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5722}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5724 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5919
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nama_lengkap_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_ktp_pengguna_informasi" => Symfony\Component\Form\Form {#5920
        -config: Symfony\Component\Form\FormBuilder {#5921
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6127 …1}
          -name: "nomor_ktp_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5731
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nomor KTP Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5731}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5733 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5922
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_ktp_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "foto_ktp_pengguna_informasi" => Symfony\Component\Form\Form {#5923
        -config: Symfony\Component\Form\FormBuilder {#5924
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6129 …1}
          -name: "foto_ktp_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5652}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: null
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: "Symfony\Component\HttpFoundation\File\File"
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:51 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => true
            "help_translation_parameters" => []
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "multiple" => false
            "block_prefix" => null
            "label" => "Foto KTP Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => "Symfony\Component\HttpFoundation\File\File"
            "empty_data" => null
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5741 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "legacy_error_messages" => true
            "invalid_message" => "This value is not valid."
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5925
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "foto_ktp_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "alamat_pengguna_informasi" => Symfony\Component\Form\Form {#5926
        -config: Symfony\Component\Form\FormBuilder {#5927
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6131 …1}
          -name: "alamat_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5749
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Alamat Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5749}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5751 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5928
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alamat_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_telepon_pengguna_informasi" => Symfony\Component\Form\Form {#5929
        -config: Symfony\Component\Form\FormBuilder {#5930
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6133 …1}
          -name: "nomor_telepon_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5758
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Nomor Telepon Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:4 [ …4]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5758}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5760 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:1 [ …1]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5931
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_telepon_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "email_pengguna_informasi" => Symfony\Component\Form\Form {#5932
        -config: Symfony\Component\Form\FormBuilder {#5933
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6135 …1}
          -name: "email_pengguna_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5690}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5767
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Email Pengguna Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5767}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5769 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "legacy_error_messages" => true
            "invalid_message" => "This value is not valid."
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => array:2 [ …2]
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5934
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "email_pengguna_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "alasan_penggunaan_informasi" => Symfony\Component\Form\Form {#5935
        -config: Symfony\Component\Form\FormBuilder {#5936
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6137 …1}
          -name: "alasan_penggunaan_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5668}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5776
            class: "Symfony\Component\Form\Extension\Core\Type\FormType"
            this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
          }
          -attributes: array:1 [
            "data_collector/passed_options" => array:4 [ …4]
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => true
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "compound" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message" => "This value is not valid."
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Alasan Penggunaan Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5776}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5778 …3}
            "help" => null
            "help_attr" => []
            "help_html" => false
            "is_empty_callback" => null
            "getter" => null
            "setter" => null
            "validation_groups" => null
            "constraints" => []
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5937
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alasan_penggunaan_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "cara_memperoleh_informasi" => Symfony\Component\Form\Form {#5990
        -config: Symfony\Component\Form\FormBuilder {#5991
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6139 …1}
          -name: "cara_memperoleh_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: true
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5788}
          -viewTransformers: array:1 [
            0 => Symfony\Component\Form\Extension\Core\DataTransformer\ChoicesToValuesTransformer {#5815 …1}
          ]
          -modelTransformers: []
          -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\CheckboxListMapper {#5806}
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: []
          -attributes: array:3 [
            "data_collector/passed_options" => array:7 [ …7]
            "choice_list" => Symfony\Component\Form\ChoiceList\ArrayChoiceList {#5804 …4}
            "choice_list_view" => Symfony\Component\Form\ChoiceList\View\ChoiceListView {#5812 …2}
          ]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:64 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => true
            "trim" => false
            "property_path" => null
            "mapped" => true
            "by_reference" => true
            "inherit_data" => false
            "method" => "POST"
            "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
            "allow_file_upload" => false
            "help_translation_parameters" => []
            "invalid_message_parameters" => []
            "error_mapping" => []
            "allow_extra_fields" => false
            "extra_fields_message" => "This form should not contain extra fields."
            "csrf_protection" => true
            "csrf_field_name" => "_token"
            "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
            "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
            "csrf_token_id" => null
            "block_prefix" => null
            "label" => "Cara Memperoleh Informasi"
             …37
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5992
          -elements: array:5 [ …5]
          -orderedKeys: array:5 [ …5]
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: []
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "cara_memperoleh_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "format_bahan_informasi" => Symfony\Component\Form\Form {#6026
        -config: Symfony\Component\Form\FormBuilder {#6027
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6141}
          -name: "format_bahan_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: true
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5788}
          -viewTransformers: array:1 [ …1]
          -modelTransformers: []
          -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\CheckboxListMapper {#5827}
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: []
          -attributes: array:3 [ …3]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:64 [ …64]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#6028
          -elements: array:2 [ …2]
          -orderedKeys: array:2 [ …2]
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: []
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "format_bahan_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "cara_mengirim_bahan_informasi" => Symfony\Component\Form\Form {#6062
        -config: Symfony\Component\Form\FormBuilder {#6063
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6143}
          -name: "cara_mengirim_bahan_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: true
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5788}
          -viewTransformers: array:1 [ …1]
          -modelTransformers: []
          -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\CheckboxListMapper {#5845}
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: []
          -attributes: array:3 [ …3]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:64 [ …64]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#6064
          -elements: array:3 [ …3]
          -orderedKeys: array:3 [ …3]
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: []
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "cara_mengirim_bahan_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "konfirmasi" => Symfony\Component\Form\Form {#6088
        -config: Symfony\Component\Form\FormBuilder {#6089
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6145}
          -name: "konfirmasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: true
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5788}
          -viewTransformers: array:1 [ …1]
          -modelTransformers: []
          -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\RadioListMapper {#5864}
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: null
          -attributes: array:3 [ …3]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:64 [ …64]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#6090
          -elements: array:1 [ …1]
          -orderedKeys: array:1 [ …1]
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "konfirmasi"
        -inheritData: false
        -propertyPath: null
      }
      "submit" => Symfony\Component\Form\SubmitButton {#6094
        -clicked: false
        -parent: Symfony\Component\Form\Form {#5890}
        -config: Symfony\Component\Form\SubmitButtonBuilder {#6095
          #locked: true
          -disabled: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5875}
          -name: "submit"
          -attributes: array:1 [ …1]
          -options: array:16 [ …16]
        }
        -submitted: false
      }
      "province_twitter_number" => Symfony\Component\Form\Form {#6096
        -config: Symfony\Component\Form\FormBuilder {#6097
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#6156}
          -name: "province_twitter_number"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5630}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: false
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5882 …2}
          -attributes: array:1 [ …1]
          -data: null
          -dataClass: null
          -dataLocked: false
          -formFactory: Symfony\Component\Form\FormFactory {#5567}
          -action: ""
          -method: "POST"
          -requestHandler: Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler {#5578}
          -autoInitialize: false
          -options: array:50 [ …50]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5890}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#6098
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "province_twitter_number"
        -inheritData: false
        -propertyPath: null
      }
    ]
    -orderedKeys: array:21 [
      0 => "nama_lengkap_pemohon_informasi"
      1 => "nomor_ktp_pemohon_informasi"
      2 => "foto_ktp_pemohon_informasi"
      3 => "alamat_pemohon_informasi"
      4 => "nomor_telepon_pemohon_informasi"
      5 => "email_pemohon_informasi"
      6 => "informasi_yang_dibutuhkan"
      7 => "alasan_permintaan"
      8 => "nama_lengkap_pengguna_informasi"
      9 => "nomor_ktp_pengguna_informasi"
      10 => "foto_ktp_pengguna_informasi"
      11 => "alamat_pengguna_informasi"
      12 => "nomor_telepon_pengguna_informasi"
      13 => "email_pengguna_informasi"
      14 => "alasan_penggunaan_informasi"
      15 => "cara_memperoleh_informasi"
      16 => "format_bahan_informasi"
      17 => "cara_mengirim_bahan_informasi"
      18 => "konfirmasi"
      19 => "submit"
      20 => "province_twitter_number"
    ]
    -managedCursors: []
  }
  -errors: []
  -submitted: false
  -clickedButton: null
  -modelData: []
  -normData: []
  -viewData: []
  -extraData: []
  -transformationFailure: null
  -defaultDataSet: true
  -lockSetData: false
  -name: "form-permohonan"
  -inheritData: false
  -propertyPath: null
}