Menu

Form Pengajuan Keberatan & Sengketa 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 07:39:32 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 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead.
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 request Matched route "record".
{
    "route": "record",
    "route_parameters": {
        "_route": "record",
        "contentTypeSlug": "page",
        "_controller": "Bolt\\Controller\\Frontend\\DetailController::record",
        "slugOrId": "form-pengajuan-keberatan-sengketa-informasi-publik"
    },
    "request_uri": "https://ppid.rspadgs.net/page/form-pengajuan-keberatan-sengketa-informasi-publik",
    "method": "GET"
}
DEBUG 07:39:32 doctrine update bolt_content SET status = 'published', published_at = :now WHERE status = 'timed' AND published_at < :now
{
    ":now": "2024-05-08T07:39:32.312867Z"
}
DEBUG 07:39:32 doctrine update bolt_content SET status = 'held', depublished_at = :now WHERE status = 'published' AND depublished_at < :now
{
    ":now": "2024-05-08T07:39:32.312867Z"
}
DEBUG 07:39:32 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 07:39:32 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Bolt\\Security\\LoginFormAuthenticator"
}
DEBUG 07:39:32 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Bolt\\Security\\LoginFormAuthenticator"
}
DEBUG 07:39:32 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 07:39:32 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\WidgetSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\WidgetSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\ZoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\ZoneSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\TimedPublishSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\TimedPublishSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformPaginationParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformPaginationParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformSortingParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformSortingParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFieldsetsParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFieldsetsParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFilteringParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFilteringParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\CanonicalSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\CanonicalSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\EntityServiceProvider::run".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\EntityServiceProvider::run"
}
INFO 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\ExtensionSubscriber::onKernelResponse".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\ExtensionSubscriber::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\MaintenanceModeSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\MaintenanceModeSubscriber::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 07:39:32 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 07:39:32 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 07:39:32 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
[
    "form-pengajuan-keberatan-s [...]",
    "pages"
]
DEBUG 07:39:32 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
[
    86
]
DEBUG 07:39:32 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 07:39:32 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 = ?
[
    605
]
INFO 07:39:32 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 07:39:32 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 = ?
[
    606
]
DEBUG 07:39:32 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
[
    "form-pengajuan-keberatan-s [...]"
]
DEBUG 07:39:32 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 07:39:32 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 07:39:32 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 = ?
[
    604
]
DEBUG 07:39:32 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 = ?
[
    612
]
DEBUG 07:39:32 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 = ?
[
    611
]
DEBUG 07:39:32 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 = ?
[
    609
]
DEBUG 07:39:32 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 07:39:32 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 07:39:32 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 = ?
[
    610
]
DEBUG 07:39:32 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 = ?
[
    613
]
DEBUG 07:39:32 doctrine SELECT t0.id AS id_1, t0.content_type AS content_type_2, t0.status AS status_3, t0.created_at AS created_at_4, t0.modified_at AS modified_at_5, t0.published_at AS published_at_6, t0.depublished_at AS depublished_at_7, t0.author_id AS author_id_8, t9.id AS id_10, t9.display_name AS display_name_11, t9.username AS username_12, t9.email AS email_13, t9.password AS password_14, t9.roles AS roles_15, t9.lastseen_at AS lastseen_at_16, t9.last_ip AS last_ip_17, t9.locale AS locale_18, t9.backend_theme AS backend_theme_19, t9.status AS status_20, t9.avatar AS avatar_21 FROM bolt_content t0 LEFT JOIN bolt_user t9 ON t0.author_id = t9.id WHERE t0.id = ?
[
    42
]
DEBUG 07:39:32 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
[
    42
]
DEBUG 07:39:32 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 = ?
[
    329
]
DEBUG 07:39:32 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 = ?
[
    325
]
DEBUG 07:39:32 doctrine SELECT t0.id AS id_1, t0.content_type AS content_type_2, t0.status AS status_3, t0.created_at AS created_at_4, t0.modified_at AS modified_at_5, t0.published_at AS published_at_6, t0.depublished_at AS depublished_at_7, t0.author_id AS author_id_8, t9.id AS id_10, t9.display_name AS display_name_11, t9.username AS username_12, t9.email AS email_13, t9.password AS password_14, t9.roles AS roles_15, t9.lastseen_at AS lastseen_at_16, t9.last_ip AS last_ip_17, t9.locale AS locale_18, t9.backend_theme AS backend_theme_19, t9.status AS status_20, t9.avatar AS avatar_21 FROM bolt_content t0 LEFT JOIN bolt_user t9 ON t0.author_id = t9.id WHERE t0.id = ?
[
    43
]
DEBUG 07:39:32 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
[
    43
]
DEBUG 07:39:32 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 = ?
[
    335
]
DEBUG 07:39:32 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 = ?
[
    331
]
DEBUG 07:39:32 doctrine SELECT t0.id AS id_1, t0.content_type AS content_type_2, t0.status AS status_3, t0.created_at AS created_at_4, t0.modified_at AS modified_at_5, t0.published_at AS published_at_6, t0.depublished_at AS depublished_at_7, t0.author_id AS author_id_8, t9.id AS id_10, t9.display_name AS display_name_11, t9.username AS username_12, t9.email AS email_13, t9.password AS password_14, t9.roles AS roles_15, t9.lastseen_at AS lastseen_at_16, t9.last_ip AS last_ip_17, t9.locale AS locale_18, t9.backend_theme AS backend_theme_19, t9.status AS status_20, t9.avatar AS avatar_21 FROM bolt_content t0 LEFT JOIN bolt_user t9 ON t0.author_id = t9.id WHERE t0.id = ?
[
    41
]
DEBUG 07:39:32 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
[
    41
]
DEBUG 07:39:32 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 = ?
[
    323
]
DEBUG 07:39:32 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 = ?
[
    319
]
DEBUG 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 event Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Bolt\Event\Subscriber\ProcessWidgetsQueueSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Bolt\\Event\\Subscriber\\ProcessWidgetsQueueSubscriber::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 07:39:32 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 07:39:32 event Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 07:39:32 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 07:39:32 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 07:39:32 event Notified event "kernel.terminate" to listener "Translation\Bundle\EventListener\AutoAddMissingTranslations::onTerminate".
{
    "event": "kernel.terminate",
    "listener": "Translation\\Bundle\\EventListener\\AutoAddMissingTranslations::onTerminate"
}
WARNING 07:39:32 php Uncaught Warning: file_put_contents(/home/ppid/translations/messages.en.xlf): failed to open stream: Permission denied
{
    "exception": {}
}
DEBUG 07:39:32 doctrine update bolt_content SET status = 'published', published_at = :now WHERE status = 'timed' AND published_at < :now
{
    ":now": "2024-05-08T07:39:32.485683Z"
}
DEBUG 07:39:32 doctrine update bolt_content SET status = 'held', depublished_at = :now WHERE status = 'published' AND depublished_at < :now
{
    ":now": "2024-05-08T07:39:32.485683Z"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\WidgetSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\WidgetSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\ZoneSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\ZoneSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\TimedPublishSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\TimedPublishSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\LocaleSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\LocaleSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformPaginationParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformPaginationParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformSortingParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformSortingParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFieldsetsParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFieldsetsParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\JsonApi\TransformFilteringParametersListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\JsonApi\\TransformFilteringParametersListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\CanonicalSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\CanonicalSubscriber::onKernelRequest"
}
DEBUG 07:39:32 event Notified event "kernel.request" to listener "Bolt\Event\Subscriber\EntityServiceProvider::run".
{
    "event": "kernel.request",
    "listener": "Bolt\\Event\\Subscriber\\EntityServiceProvider::run"
}
INFO 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 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 07:39:32 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\ExtensionSubscriber::onKernelResponse".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\ExtensionSubscriber::onKernelResponse"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Bolt\Event\Subscriber\MaintenanceModeSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Bolt\\Event\\Subscriber\\MaintenanceModeSubscriber::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 07:39:32 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 07:39:32 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 07:39:32 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 Pernyataan Keberatan"
      "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:13 [
      "nomor_pendaftaran_permohonan_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor Pendaftaran Permohonan Informasi"
          "attr" => array:3 [
            "placeholder" => "Nomor Pendaftaran Permohonan Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "postfix" => "<p>Nomor yang anda dapatkan saat mengajukan permohonan informasi publik.</p>"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "tujuan_penggunaan_informasi" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Tujuan Penggunaan Informasi"
          "attr" => array:2 [
            "placeholder" => "Tujuan Penggunaan Informasi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "nama_pemohon" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nama Lengkap Pemohon"
          "attr" => array:2 [
            "placeholder" => "Nama Lengkap Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 3
                "max" => 128
              ]
            ]
          ]
        ]
      ]
      "alamat" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alamat Pemohon"
          "attr" => array:2 [
            "placeholder" => "Alamat Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
          ]
        ]
      ]
      "pekerjaan_pemohon" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Pekerjaan Pemohon"
          "attr" => array:2 [
            "placeholder" => "Pekerjaan Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 3
                "max" => 128
              ]
            ]
          ]
        ]
      ]
      "nomor_telepon_pemohon" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor Telepon Pemohon"
          "attr" => array:3 [
            "placeholder" => "Nomor Telepon Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "pattern" => "[0-9]+"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "email_pemohon" => array:2 [
        "type" => "email"
        "options" => array:4 [
          "required" => true
          "label" => "Alamat E-Mail Pemohon"
          "attr" => array:2 [
            "placeholder" => "Alamat E-Mail Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => "Email"
          ]
        ]
      ]
      "nama_kuasa_pemohon" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nama Lengkap Kuasa Pemohon"
          "attr" => array:2 [
            "placeholder" => "Nama Lengkap Kuasa Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
          ]
          "constraints" => array:2 [
            0 => "NotBlank"
            1 => array:1 [
              "Length" => array:2 [
                "min" => 3
                "max" => 128
              ]
            ]
          ]
        ]
      ]
      "alamat_kuasa_pemohon" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => true
          "label" => "Alamat Kuasa Pemohon"
          "attr" => array:2 [
            "placeholder" => "Alamat Kuasa Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
          ]
        ]
      ]
      "nomor_telepon_kuasa_pemohon" => array:2 [
        "type" => "text"
        "options" => array:4 [
          "required" => true
          "label" => "Nomor Telepon Kuasa Pemohon"
          "attr" => array:4 [
            "placeholder" => "Nomor Telepon Kuasa Pemohon"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 mt-2"
            "pattern" => "[0-9]+"
            "footnote" => "Identitas kuasa pemohon diisi jika ada kuasa pemohonnya dan melampirkan surat kuasa"
          ]
          "constraints" => array:1 [
            0 => "NotBlank"
          ]
        ]
      ]
      "alasan_pengajuan_keberatan" => array:2 [
        "type" => "choice"
        "options" => array:6 [
          "required" => true
          "expanded" => true
          "multiple" => true
          "label" => "Alasan Pengajuan Keberatan"
          "choices" => array:7 [
            "Permohonan informasi ditolak" => "permohonan_informasi_ditolak"
            "Informasi berkala tidak disediakan" => "informasi_berkala_tidak_disediakan"
            "Permintaan informasi tidak ditanggapi" => "permintaan_informasi_tidak_ditanggapi"
            "Permintaan informasi ditanggapi tidak sebagaimana yang diminta" => "permintaan_informasi_ditanggapi_tidak_sebagaimana_yang_diminta"
            "Permintaan informasi tidak dipenuhi" => "permintaan_infromasi_tidak_dipenuhi"
            "Biaya yang dikenakan tidak wajar" => "biaya_yang_dikenakan_tidak_wajar"
            "Informasi disampaikan melebihi jangka waktu yang ditentukan" => "informasi_disampaikan_melebihi_jangka_waktu_yang_ditentukan"
          ]
          "attr" => array:2 [
            "data-checkbox" => ""
            "footnote" => "Sesuai dengan pasal 35 UU KIP dipilih oleh pengaju keberatan sesuai dengan alasan keberatan yang diajukan."
          ]
        ]
      ]
      "kasus_posisi" => array:2 [
        "type" => "textarea"
        "options" => array:3 [
          "required" => false
          "label" => "Kasus Posisi"
          "attr" => array:2 [
            "placeholder" => "Kasus Posisi"
            "class" => "w-full rounded-md transition-all bg-white border border-gray-200 py-3 px-4 h-48 mt-2"
          ]
        ]
      ]
      "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 {#5795
  -config: Symfony\Component\Form\FormBuilder {#5796
    -children: []
    -unresolvedChildren: []
    #locked: true
    -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5930 …1}
    -name: "form-keberatan"
    -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
              -validator: Symfony\Component\Validator\Validator\RecursiveValidator {#1111 …4}
              -collectedData: []
            }
            -violationMapper: Symfony\Component\Form\Extension\Validator\ViolationMapper\ViolationMapper {#5591
              -formRenderer: Symfony\Component\Form\FormRenderer {#5590 …5}
              -translator: Symfony\Component\Translation\DataCollectorTranslator {#229 …}
              -allowNonSynchronized: false
            }
            -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
              -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560
                -dataExtractor: Symfony\Component\Form\Extension\DataCollector\FormDataExtractor {#5561}
                -dataByForm: array:22 [
                  "000000004cad6c92000000000affc75f" => array:8 [
                    "id" => "form-keberatan"
                    "name" => "form-keberatan"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\FormType"
                    "synchronized" => true
                    "passed_options" => array:2 [
                      "attr" => array:1 [ …1]
                      "data" => []
                    ]
                    "resolved_options" => array:51 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:1 [ …1]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => true
                      "constraints" => []
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data" => []
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5606
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => true
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => null
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "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 …}
                        }
                      }
                      "validation_groups" => null
                    ]
                    "default_data" => array:1 [
                      "norm" => []
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c97000000000affc75f" => array:8 [
                    "id" => "form-keberatan_nomor_pendaftaran_permohonan_informasi"
                    "name" => "nomor_pendaftaran_permohonan_informasi"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:3 [ …3]
                      "constraints" => array:1 [ …1]
                      "label" => "Nomor Pendaftaran Permohonan Informasi"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:3 [ …3]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:1 [ …1]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5632
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Nomor Pendaftaran Permohonan Informasi"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5634 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c98000000000affc75f" => array:8 [
                    "id" => "form-keberatan_tujuan_penggunaan_informasi"
                    "name" => "tujuan_penggunaan_informasi"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => array:1 [ …1]
                      "label" => "Tujuan Penggunaan Informasi"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:1 [ …1]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5641
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Tujuan Penggunaan Informasi"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5643 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c9d000000000affc75f" => array:8 [
                    "id" => "form-keberatan_nama_pemohon"
                    "name" => "nama_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => array:2 [ …2]
                      "label" => "Nama Lengkap Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:2 [ …2]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5650
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Nama Lengkap Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5652 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c9e000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alamat"
                    "name" => "alamat"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => []
                      "label" => "Alamat Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => []
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5663
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Alamat Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5665 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c83000000000affc75f" => array:8 [
                    "id" => "form-keberatan_pekerjaan_pemohon"
                    "name" => "pekerjaan_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => array:2 [ …2]
                      "label" => "Pekerjaan Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:2 [ …2]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5672
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Pekerjaan Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5674 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c84000000000affc75f" => array:8 [
                    "id" => "form-keberatan_nomor_telepon_pemohon"
                    "name" => "nomor_telepon_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:3 [ …3]
                      "constraints" => array:1 [ …1]
                      "label" => "Nomor Telepon Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:3 [ …3]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:1 [ …1]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5681
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Nomor Telepon Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5683 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c89000000000affc75f" => array:8 [
                    "id" => "form-keberatan_email_pemohon"
                    "name" => "email_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\EmailType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => array:2 [ …2]
                      "label" => "Alamat E-Mail Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:2 [ …2]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5695
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Alamat E-Mail Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5697 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c8a000000000affc75f" => array:8 [
                    "id" => "form-keberatan_nama_kuasa_pemohon"
                    "name" => "nama_kuasa_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                      "constraints" => array:2 [ …2]
                      "label" => "Nama Lengkap Kuasa Pemohon"
                      "required" => true
                    ]
                    "resolved_options" => array:50 [
                      "action" => ""
                      "allow_extra_fields" => false
                      "allow_file_upload" => false
                      "attr" => array:2 [ …2]
                      "attr_translation_parameters" => []
                      "auto_initialize" => true
                      "block_name" => null
                      "block_prefix" => null
                      "by_reference" => true
                      "compound" => false
                      "constraints" => array:2 [ …2]
                      "csrf_field_name" => "_token"
                      "csrf_message" => "The CSRF token is invalid. Please try to resubmit the form."
                      "csrf_protection" => true
                      "csrf_token_id" => null
                      "csrf_token_manager" => Symfony\Component\Security\Csrf\CsrfTokenManager {#1002}
                      "data_class" => null
                      "disabled" => false
                      "empty_data" => Closure(FormInterface $form) {#5704
                        class: "Symfony\Component\Form\Extension\Core\Type\FormType"
                        this: Symfony\Component\Form\Extension\Core\Type\FormType {#5584 …}
                      }
                      "error_bubbling" => false
                      "error_mapping" => []
                      "extra_fields_message" => "This form should not contain extra fields."
                      "form_attr" => false
                      "getter" => null
                      "help" => null
                      "help_attr" => []
                      "help_html" => false
                      "help_translation_parameters" => []
                      "inherit_data" => false
                      "invalid_message" => "This value is not valid."
                      "invalid_message_parameters" => []
                      "is_empty_callback" => null
                      "label" => "Nama Lengkap Kuasa Pemohon"
                      "label_attr" => []
                      "label_format" => null
                      "label_html" => false
                      "label_translation_parameters" => []
                      "legacy_error_messages" => true
                      "mapped" => true
                      "method" => "POST"
                      "post_max_size_message" => "The uploaded file was too large. Please try to upload a smaller file."
                      "priority" => 0
                      "property_path" => null
                      "required" => true
                      "row_attr" => []
                      "setter" => null
                      "translation_domain" => null
                      "trim" => true
                      "upload_max_size_message" => Closure() {#5706 …3}
                      "validation_groups" => null
                    ]
                    "default_data" => array:2 [
                      "norm" => null
                      "view" => ""
                    ]
                    "submitted_data" => []
                  ]
                  "000000004cad6c8f000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alamat_kuasa_pemohon"
                    "name" => "alamat_kuasa_pemohon"
                    "type_class" => "Symfony\Component\Form\Extension\Core\Type\TextareaType"
                    "synchronized" => true
                    "passed_options" => array:4 [
                      "attr" => array:2 [ …2]
                       …3
                    ]
                    "resolved_options" => array:50 [ …50]
                    "default_data" => array:2 [ …2]
                    "submitted_data" => []
                  ]
                  "000000004cad6cf0000000000affc75f" => array:8 [
                    "id" => "form-keberatan_nomor_telepon_kuasa_pemohon"
                    "name" => "nomor_telepon_kuasa_pemohon"
                    "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" => []
                  ]
                  "000000004cad6d3b000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan"
                    "name" => "alasan_pengajuan_keberatan"
                    "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" => []
                  ]
                  "000000004cad6d3c000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_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" => []
                  ]
                  "000000004cad6d21000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_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" => []
                  ]
                  "000000004cad6d22000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_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" => []
                  ]
                  "000000004cad6d27000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_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" => []
                  ]
                  "000000004cad6d28000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_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" => []
                  ]
                  "000000004cad6d2d000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_5"
                    "name" => "5"
                    "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" => []
                  ]
                  "000000004cad6d2e000000000affc75f" => array:8 [
                    "id" => "form-keberatan_alasan_pengajuan_keberatan_6"
                    "name" => "6"
                    "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" => []
                  ]
                  "000000004cad6d13000000000affc75f" => array:8 [
                    "id" => "form-keberatan_kasus_posisi"
                    "name" => "kasus_posisi"
                    "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" => []
                  ]
                  "000000004cad6d14000000000affc75f" => array:8 [
                    "id" => "form-keberatan_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" => []
                  ]
                  "000000004cad6d16000000000affc75f" => array:8 [
                    "id" => "form-keberatan_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
              }
            }
          }
        ]
        -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 [
              0 => Closure(Options $options, $groups) {#5601 …2}
            ]
            "constraints" => array:1 [
              0 => Closure(Options $options, $constraints) {#5602 …2}
            ]
            "upload_max_size_message" => array:1 [
              0 => Closure(Options $options, $message) {#5604 …3}
            ]
          ]
          -allowedValues: []
          -allowedTypes: array:17 [
            "block_prefix" => array:2 [
              0 => "null"
              1 => "string"
            ]
            "attr" => array:1 [
              0 => "array"
            ]
            "row_attr" => array:1 [
              0 => "array"
            ]
            "label_html" => array:1 [
              0 => "bool"
            ]
            "priority" => array:1 [
              0 => "int"
            ]
            "form_attr" => array:2 [
              0 => "bool"
              1 => "string"
            ]
            "label_attr" => array:1 [
              0 => "array"
            ]
            "action" => array:1 [
              0 => "string"
            ]
            "upload_max_size_message" => array:1 [
              0 => "callable"
            ]
            "help" => array:3 [
              0 => "string"
              1 => "null"
              2 => "Symfony\Component\Translation\TranslatableMessage"
            ]
            "help_attr" => array:1 [
              0 => "array"
            ]
            "help_html" => array:1 [
              0 => "bool"
            ]
            "is_empty_callback" => array:2 [
              0 => "null"
              1 => "callable"
            ]
            "getter" => array:2 [
              0 => "null"
              1 => "callable"
            ]
            "setter" => array:2 [
              0 => "null"
              1 => "callable"
            ]
            "constraints" => array:2 [
              0 => "Symfony\Component\Validator\Constraint"
              1 => "Symfony\Component\Validator\Constraint[]"
            ]
            "legacy_error_messages" => array:1 [
              0 => "bool"
            ]
          ]
          -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 [
              0 => Closure(Options $options) {#5597 …2}
            ]
            "empty_data" => array:1 [
              0 => Closure(Options $options) {#5598 …2}
            ]
            "error_bubbling" => array:1 [
              0 => Closure(Options $options) {#5600 …2}
            ]
            "upload_max_size_message" => array:1 [
              0 => Closure(Options $options) {#5599 …2}
            ]
          ]
          -calling: []
          -deprecated: array:1 [
            "legacy_error_messages" => array:3 [
              "package" => "symfony/form"
              "version" => "5.2"
              "message" => Closure(Options $options, $value) {#5603 …2}
            ]
          ]
          -given: []
          -locked: false
          -parentsOptions: []
          -prototype: null
          -prototypeIndex: null
        }
      }
      -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
    }
    -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}
    -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:8 [
          "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 {#5628
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5629 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\TextareaType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5659
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5660 …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 {#5734
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5735 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\ButtonType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5776
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5779 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\SubmitType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5780
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5781 …4}
            -dataCollector: Symfony\Component\Form\Extension\DataCollector\FormDataCollector {#5560}
          }
          "Symfony\Component\Form\Extension\Core\Type\CheckboxType" => Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5829
            -proxiedType: Symfony\Component\Form\ResolvedFormType {#5830 …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}
      "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 {#5797
    -elements: array:14 [
      "nomor_pendaftaran_permohonan_informasi" => Symfony\Component\Form\Form {#5798
        -config: Symfony\Component\Form\FormBuilder {#5799
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5941 …1}
          -name: "nomor_pendaftaran_permohonan_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5632}
          -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 Pendaftaran Permohonan Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5632}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5634 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5800
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_pendaftaran_permohonan_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "tujuan_penggunaan_informasi" => Symfony\Component\Form\Form {#5801
        -config: Symfony\Component\Form\FormBuilder {#5802
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5942 …1}
          -name: "tujuan_penggunaan_informasi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5641}
          -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" => "Tujuan Penggunaan Informasi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5641}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5643 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5803
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "tujuan_penggunaan_informasi"
        -inheritData: false
        -propertyPath: null
      }
      "nama_pemohon" => Symfony\Component\Form\Form {#5804
        -config: Symfony\Component\Form\FormBuilder {#5805
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5944 …1}
          -name: "nama_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5650}
          -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"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5650}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5652 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5806
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nama_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "alamat" => Symfony\Component\Form\Form {#5807
        -config: Symfony\Component\Form\FormBuilder {#5808
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5946 …1}
          -name: "alamat"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5659}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5663}
          -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"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5663}
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5665 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5809
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alamat"
        -inheritData: false
        -propertyPath: null
      }
      "pekerjaan_pemohon" => Symfony\Component\Form\Form {#5810
        -config: Symfony\Component\Form\FormBuilder {#5811
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5948 …1}
          -name: "pekerjaan_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5672}
          -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" => "Pekerjaan Pemohon"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "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" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5812
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "pekerjaan_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_telepon_pemohon" => Symfony\Component\Form\Form {#5813
        -config: Symfony\Component\Form\FormBuilder {#5814
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5950 …1}
          -name: "nomor_telepon_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5681}
          -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"
            "row_attr" => []
            "label_html" => false
            "attr" => array:3 [ …3]
            "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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5815
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_telepon_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "email_pemohon" => Symfony\Component\Form\Form {#5816
        -config: Symfony\Component\Form\FormBuilder {#5817
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5952 …1}
          -name: "email_pemohon"
          -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}
          -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" => "Alamat E-Mail Pemohon"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5818
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "email_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "nama_kuasa_pemohon" => Symfony\Component\Form\Form {#5819
        -config: Symfony\Component\Form\FormBuilder {#5820
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5954 …1}
          -name: "nama_kuasa_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5704}
          -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 Kuasa Pemohon"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "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" => array:2 [ …2]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5821
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nama_kuasa_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "alamat_kuasa_pemohon" => Symfony\Component\Form\Form {#5822
        -config: Symfony\Component\Form\FormBuilder {#5823
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5956 …1}
          -name: "alamat_kuasa_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5659}
          -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" => "Alamat Kuasa Pemohon"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5824
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alamat_kuasa_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "nomor_telepon_kuasa_pemohon" => Symfony\Component\Form\Form {#5825
        -config: Symfony\Component\Form\FormBuilder {#5826
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5958 …1}
          -name: "nomor_telepon_kuasa_pemohon"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -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" => "Nomor Telepon Kuasa Pemohon"
            "row_attr" => []
            "label_html" => false
            "attr" => array:4 [ …4]
            "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:1 [ …1]
            "legacy_error_messages" => true
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5827
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "nomor_telepon_kuasa_pemohon"
        -inheritData: false
        -propertyPath: null
      }
      "alasan_pengajuan_keberatan" => Symfony\Component\Form\Form {#5898
        -config: Symfony\Component\Form\FormBuilder {#5899
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5960 …1}
          -name: "alasan_pengajuan_keberatan"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: true
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5734}
          -viewTransformers: array:1 [
            0 => Symfony\Component\Form\Extension\Core\DataTransformer\ChoicesToValuesTransformer {#5763 …1}
          ]
          -modelTransformers: []
          -dataMapper: Symfony\Component\Form\Extension\Core\DataMapper\CheckboxListMapper {#5752}
          -required: true
          -disabled: false
          -errorBubbling: false
          -emptyData: []
          -attributes: array:3 [
            "data_collector/passed_options" => array:7 [ …7]
            "choice_list" => Symfony\Component\Form\ChoiceList\ArrayChoiceList {#5750 …4}
            "choice_list_view" => Symfony\Component\Form\ChoiceList\View\ChoiceListView {#5760 …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" => "Alasan Pengajuan Keberatan"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "expanded" => true
            "multiple" => true
            "empty_data" => []
            "required" => true
            "error_bubbling" => false
            "label_attr" => []
            "compound" => true
            "action" => ""
            "upload_max_size_message" => Closure() {#5744 …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" => []
            "choices" => array:7 [ …7]
            "choice_filter" => null
            "choice_loader" => null
            "choice_label" => null
            "choice_name" => null
            "choice_value" => null
            "choice_attr" => null
            "choice_translation_parameters" => []
            "preferred_choices" => []
            "group_by" => null
            "placeholder" => null
            "choice_translation_domain" => null
          ]
          -isEmptyCallback: null
        }
        -parent: Symfony\Component\Form\Form {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5900
          -elements: array:7 [
            0 => Symfony\Component\Form\Form {#5901 …16}
            1 => Symfony\Component\Form\Form {#5904 …16}
            2 => Symfony\Component\Form\Form {#5907 …16}
            3 => Symfony\Component\Form\Form {#5910 …16}
            4 => Symfony\Component\Form\Form {#5913 …16}
            5 => Symfony\Component\Form\Form {#5916 …16}
            6 => Symfony\Component\Form\Form {#5919 …16}
          ]
          -orderedKeys: array:7 [
            0 => "0"
            1 => "1"
            2 => "2"
            3 => "3"
            4 => "4"
            5 => "5"
            6 => "6"
          ]
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: []
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "alasan_pengajuan_keberatan"
        -inheritData: false
        -propertyPath: null
      }
      "kasus_posisi" => Symfony\Component\Form\Form {#5922
        -config: Symfony\Component\Form\FormBuilder {#5923
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5962 …1}
          -name: "kasus_posisi"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5659}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: false
          -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" => "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" => "Kasus Posisi"
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5767}
            "required" => false
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5769 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5924
          -elements: []
          -orderedKeys: []
          -managedCursors: []
        }
        -errors: []
        -submitted: false
        -clickedButton: null
        -modelData: null
        -normData: null
        -viewData: ""
        -extraData: []
        -transformationFailure: null
        -defaultDataSet: true
        -lockSetData: false
        -name: "kasus_posisi"
        -inheritData: false
        -propertyPath: null
      }
      "submit" => Symfony\Component\Form\SubmitButton {#5925
        -clicked: false
        -parent: Symfony\Component\Form\Form {#5795}
        -config: Symfony\Component\Form\SubmitButtonBuilder {#5926
          #locked: true
          -disabled: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5780}
          -name: "submit"
          -attributes: array:1 [
            "data_collector/passed_options" => array:2 [ …2]
          ]
          -options: array:16 [
            "block_name" => null
            "disabled" => false
            "label_format" => null
            "label_translation_parameters" => []
            "attr_translation_parameters" => []
            "translation_domain" => null
            "auto_initialize" => false
            "block_prefix" => null
            "label" => "Kirim"
            "row_attr" => []
            "label_html" => false
            "attr" => array:1 [ …1]
            "priority" => 0
            "form_attr" => false
            "validate" => true
            "validation_groups" => null
          ]
        }
        -submitted: false
      }
      "province_twitter_number" => Symfony\Component\Form\Form {#5927
        -config: Symfony\Component\Form\FormBuilder {#5928
          -children: []
          -unresolvedChildren: []
          #locked: true
          -dispatcher: Symfony\Component\EventDispatcher\ImmutableEventDispatcher {#5964 …1}
          -name: "province_twitter_number"
          -propertyPath: null
          -mapped: true
          -byReference: true
          -inheritData: false
          -compound: false
          -type: Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy {#5628}
          -viewTransformers: []
          -modelTransformers: []
          -dataMapper: null
          -required: false
          -disabled: false
          -errorBubbling: false
          -emptyData: Closure(FormInterface $form) {#5787
            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 [ …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:50 [
            "block_name" => null
            "disabled" => false
            "label" => null
            "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
            "row_attr" => []
            "label_html" => false
            "attr" => array:2 [ …2]
            "priority" => 0
            "form_attr" => false
            "data_class" => null
            "empty_data" => Closure(FormInterface $form) {#5787}
            "required" => false
            "error_bubbling" => false
            "label_attr" => []
            "action" => ""
            "upload_max_size_message" => Closure() {#5789 …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 {#5795}
        -children: Symfony\Component\Form\Util\OrderedHashMap {#5929
          -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:14 [
      0 => "nomor_pendaftaran_permohonan_informasi"
      1 => "tujuan_penggunaan_informasi"
      2 => "nama_pemohon"
      3 => "alamat"
      4 => "pekerjaan_pemohon"
      5 => "nomor_telepon_pemohon"
      6 => "email_pemohon"
      7 => "nama_kuasa_pemohon"
      8 => "alamat_kuasa_pemohon"
      9 => "nomor_telepon_kuasa_pemohon"
      10 => "alasan_pengajuan_keberatan"
      11 => "kasus_posisi"
      12 => "submit"
      13 => "province_twitter_number"
    ]
    -managedCursors: []
  }
  -errors: []
  -submitted: false
  -clickedButton: null
  -modelData: []
  -normData: []
  -viewData: []
  -extraData: []
  -transformationFailure: null
  -defaultDataSet: true
  -lockSetData: false
  -name: "form-keberatan"
  -inheritData: false
  -propertyPath: null
}