https://validogresto.infostat-marketing.com/up/pos

Exceptions

There is no active transaction.

Exception

Doctrine\DBAL\ ConnectionException

  1.     }
  2.     /** @return ConnectionException */
  3.     public static function noActiveTransaction()
  4.     {
  5.         return new self('There is no active transaction.');
  6.     }
  7.     /** @return ConnectionException */
  8.     public static function savepointsNotSupported()
  9.     {
in vendor/doctrine/dbal/src/Connection.php :: noActiveTransaction (line 1771)
  1.      * @throws ConnectionException If no transaction is active.
  2.      */
  3.     public function isRollbackOnly()
  4.     {
  5.         if ($this->transactionNestingLevel === 0) {
  6.             throw ConnectionException::noActiveTransaction();
  7.         }
  8.         return $this->isRollbackOnly;
  9.     }
  1.             $type $access->getType();
  2.             try {
  3.                 if (PropertyReadInfo::TYPE_METHOD === $type) {
  4.                     try {
  5.                         $result[self::VALUE] = $object->$name();
  6.                     } catch (\TypeError $e) {
  7.                         [$trace] = $e->getTrace();
  8.                         // handle uninitialized properties in PHP >= 7
  9.                         if (__FILE__ === $trace['file']
  1.         $zval = [
  2.             self::VALUE => $objectOrArray,
  3.         ];
  4.         if (\is_object($objectOrArray) && false === strpbrk((string) $propertyPath'.[')) {
  5.             return $this->readProperty($zval$propertyPath$this->ignoreInvalidProperty)[self::VALUE];
  6.         }
  7.         $propertyPath $this->getPropertyPath($propertyPath);
  8.         $propertyValues $this->readPropertiesUntil($zval$propertyPath$propertyPath->getLength(), $this->ignoreInvalidIndices);
  1.                 $mapping $this->classDiscriminatorResolver->getMappingForMappedObject($object);
  2.                 $this->discriminatorCache[$cacheKey] = null === $mapping null $mapping->getTypeProperty();
  3.             }
  4.         }
  5.         return $attribute === $this->discriminatorCache[$cacheKey] ? $this->classDiscriminatorResolver->getTypeForMappedObject($object) : $this->propertyAccessor->getValue($object$attribute);
  6.     }
  7.     /**
  8.      * {@inheritdoc}
  9.      */
  1.             }
  2.             $attributeContext $this->getAttributeNormalizationContext($object$attribute$context);
  3.             try {
  4.                 $attributeValue $this->getAttributeValue($object$attribute$format$attributeContext);
  5.             } catch (UninitializedPropertyException $e) {
  6.                 if ($context[self::SKIP_UNINITIALIZED_VALUES] ?? $this->defaultContext[self::SKIP_UNINITIALIZED_VALUES] ?? true) {
  7.                     continue;
  8.                 }
  9.                 throw $e;
  1.      */
  2.     public function normalize(mixed $datastring $format null, array $context = []): array|string|int|float|bool|\ArrayObject|null
  3.     {
  4.         // If a normalizer supports the given data, use it
  5.         if ($normalizer $this->getNormalizer($data$format$context)) {
  6.             return $normalizer->normalize($data$format$context);
  7.         }
  8.         if (null === $data || \is_scalar($data)) {
  9.             return $data;
  10.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.             }
  2.             $attributeContext $this->getAttributeNormalizationContext($object$attribute$context);
  3.             $childContext $this->createChildContext($attributeContext$attribute$format);
  4.             $data $this->updateData($data$attribute$this->serializer->normalize($attributeValue$format$childContext), $class$format$attributeContext);
  5.         }
  6.         if (isset($context[self::PRESERVE_EMPTY_OBJECTS]) && !\count($data)) {
  7.             return new \ArrayObject();
  8.         }
  1.      */
  2.     public function normalize(mixed $datastring $format null, array $context = []): array|string|int|float|bool|\ArrayObject|null
  3.     {
  4.         // If a normalizer supports the given data, use it
  5.         if ($normalizer $this->getNormalizer($data$format$context)) {
  6.             return $normalizer->normalize($data$format$context);
  7.         }
  8.         if (null === $data || \is_scalar($data)) {
  9.             return $data;
  10.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.             }
  2.             $attributeContext $this->getAttributeNormalizationContext($object$attribute$context);
  3.             $childContext $this->createChildContext($attributeContext$attribute$format);
  4.             $data $this->updateData($data$attribute$this->serializer->normalize($attributeValue$format$childContext), $class$format$attributeContext);
  5.         }
  6.         if (isset($context[self::PRESERVE_EMPTY_OBJECTS]) && !\count($data)) {
  7.             return new \ArrayObject();
  8.         }
  1.      */
  2.     public function normalize(mixed $datastring $format null, array $context = []): array|string|int|float|bool|\ArrayObject|null
  3.     {
  4.         // If a normalizer supports the given data, use it
  5.         if ($normalizer $this->getNormalizer($data$format$context)) {
  6.             return $normalizer->normalize($data$format$context);
  7.         }
  8.         if (null === $data || \is_scalar($data)) {
  9.             return $data;
  10.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.             }
  2.             $attributeContext $this->getAttributeNormalizationContext($object$attribute$context);
  3.             $childContext $this->createChildContext($attributeContext$attribute$format);
  4.             $data $this->updateData($data$attribute$this->serializer->normalize($attributeValue$format$childContext), $class$format$attributeContext);
  5.         }
  6.         if (isset($context[self::PRESERVE_EMPTY_OBJECTS]) && !\count($data)) {
  7.             return new \ArrayObject();
  8.         }
  1.      */
  2.     public function normalize(mixed $datastring $format null, array $context = []): array|string|int|float|bool|\ArrayObject|null
  3.     {
  4.         // If a normalizer supports the given data, use it
  5.         if ($normalizer $this->getNormalizer($data$format$context)) {
  6.             return $normalizer->normalize($data$format$context);
  7.         }
  8.         if (null === $data || \is_scalar($data)) {
  9.             return $data;
  10.         }
  1.                 return new \ArrayObject();
  2.             }
  3.             $normalized = [];
  4.             foreach ($data as $key => $val) {
  5.                 $normalized[$key] = $this->normalize($val$format$context);
  6.             }
  7.             return $normalized;
  8.         }
  1.         if (!$this->supportsEncoding($format$context)) {
  2.             throw new NotEncodableValueException(sprintf('Serialization for the format "%s" is not supported.'$format));
  3.         }
  4.         if ($this->encoder->needsNormalization($format$context)) {
  5.             $data $this->normalize($data$format$context);
  6.         }
  7.         return $this->encode($data$format$context);
  8.     }
  1.      */
  2.     protected function json(mixed $dataint $status 200, array $headers = [], array $context = []): JsonResponse
  3.     {
  4.         if ($this->container->has('serializer')) {
  5.             $json $this->container->get('serializer')->serialize($data'json'array_merge([
  6.                 'json_encode_options' => JsonResponse::DEFAULT_ENCODING_OPTIONS,
  7.             ], $context));
  8.             return new JsonResponse($json$status$headerstrue);
  9.         }
AbstractController->json(array('erreur' => object(DriverException)), 500) in src/Controller/API/APIController.php (line 761)
  1.             $contents=json_decode($request->getContent(),true);
  2.             try{
  3.                 $repo->updatePoiPosition($contents["poiX"], $contents["poiY"],$contents["id"]);
  4.                 return $this->json(["message"=>"ok"],200);
  5.             }catch(\Exception $e){
  6.                return $this->json(["erreur"=>$e],500);
  7.             }
  8.           
  9.         }
in vendor/symfony/http-kernel/HttpKernel.php -> updatePoiPos (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 22:03:37 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a3018f"
    },
    "request_uri": "https://validogresto.infostat-marketing.com/_profiler/a3018f",
    "method": "GET"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 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"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 22:03:37 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 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 22:03:37 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"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:03:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:03:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:03:37 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 22:03:37 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 22:03:37 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

ConnectionException
Doctrine\DBAL\ConnectionException:
There is no active transaction.

  at vendor/doctrine/dbal/src/ConnectionException.php:16
  at Doctrine\DBAL\ConnectionException::noActiveTransaction()
     (vendor/doctrine/dbal/src/Connection.php:1771)
  at Doctrine\DBAL\Connection->isRollbackOnly()
     (vendor/symfony/property-access/PropertyAccessor.php:406)
  at Symfony\Component\PropertyAccess\PropertyAccessor->readProperty(array(object(Connection)), 'rollbackOnly', false)
     (vendor/symfony/property-access/PropertyAccessor.php:115)
  at Symfony\Component\PropertyAccess\PropertyAccessor->getValue(object(Connection), 'rollbackOnly')
     (vendor/symfony/serializer/Normalizer/ObjectNormalizer.php:140)
  at Symfony\Component\Serializer\Normalizer\ObjectNormalizer->getAttributeValue(object(Connection), 'rollbackOnly', 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1, '000000000000014f0000000000000000' => 1)))
     (vendor/symfony/serializer/Normalizer/AbstractObjectNormalizer.php:182)
  at Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer->normalize(object(Connection), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1, '000000000000014f0000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:161)
  at Symfony\Component\Serializer\Serializer->normalize(object(Connection), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(object(Connection), array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2)), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query.php', 'line' => 330, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor', 'type' => '->', 'args' => array(object(Connection), array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/PDO/Statement.php', 'line' => 130, 'function' => 'execute', 'class' => 'PDOStatement', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php', 'line' => 69, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\PDO\\Statement', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Logging/Statement.php', 'line' => 98, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php', 'line' => 69, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Logging\\Statement', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php', 'line' => 65, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1212, 'function' => 'execute', 'class' => 'Symfony\\Bridge\\Doctrine\\Middleware\\Debug\\Statement', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query/Exec/SingleTableDeleteUpdateExecutor.php', 'line' => 43, 'function' => 'executeStatement', 'class' => 'Doctrine\\DBAL\\Connection', 'type' => '->', 'args' => array('UPDATE ogresto.restaurant SET poi_y = ?, poi_x = ?, modif_position = ? WHERE id = ?', array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query.php', 'line' => 330, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor', 'type' => '->', 'args' => array(object(Connection), array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1218, 'function' => '_doExecute', 'class' => 'Doctrine\\ORM\\Query', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1172, 'function' => 'executeIgnoreQueryCache', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array(null, null)), array('file' => '/home/infostatmut/validation_resto_new/src/Repository/RestaurantRepository.php', 'line' => 1208, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/src/Controller/API/APIController.php', 'line' => 758, 'function' => 'updatePoiPosition', 'class' => 'App\\Repository\\RestaurantRepository', 'type' => '->', 'args' => array(' 4.694681735904409', '43.79526112823878', '620304')), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 163, 'function' => 'updatePoiPos', 'class' => 'App\\Controller\\API\\APIController', 'type' => '->', 'args' => array(object(Request), object(RestaurantRepository))), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 75, 'function' => 'handleRaw', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/Kernel.php', 'line' => 202, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1, true)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php', 'line' => 35, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\Kernel', 'type' => '->', 'args' => array(object(Request))), array('file' => '/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php', 'line' => 29, 'function' => 'run', 'class' => 'Symfony\\Component\\Runtime\\Runner\\Symfony\\HttpKernelRunner', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/public/index.php', 'line' => 5, 'args' => array('/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php'), 'function' => 'require_once')), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1)))
     (vendor/symfony/serializer/Normalizer/AbstractObjectNormalizer.php:216)
  at Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer->normalize(object(PDOException), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1, '00000000000004420000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:161)
  at Symfony\Component\Serializer\Serializer->normalize(object(PDOException), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(object(PDOException)), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/PDO/Statement.php', 'line' => 132, 'function' => 'new', 'class' => 'Doctrine\\DBAL\\Driver\\PDO\\Exception', 'type' => '::', 'args' => array(object(PDOException))), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/PDO/Statement.php', 'line' => 132, 'function' => 'new', 'class' => 'Doctrine\\DBAL\\Driver\\PDO\\Exception', 'type' => '::', 'args' => array(object(PDOException))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php', 'line' => 69, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\PDO\\Statement', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Logging/Statement.php', 'line' => 98, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php', 'line' => 69, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Logging\\Statement', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php', 'line' => 65, 'function' => 'execute', 'class' => 'Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware', 'type' => '->', 'args' => array(null)), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1212, 'function' => 'execute', 'class' => 'Symfony\\Bridge\\Doctrine\\Middleware\\Debug\\Statement', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query/Exec/SingleTableDeleteUpdateExecutor.php', 'line' => 43, 'function' => 'executeStatement', 'class' => 'Doctrine\\DBAL\\Connection', 'type' => '->', 'args' => array('UPDATE ogresto.restaurant SET poi_y = ?, poi_x = ?, modif_position = ? WHERE id = ?', array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query.php', 'line' => 330, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor', 'type' => '->', 'args' => array(object(Connection), array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1218, 'function' => '_doExecute', 'class' => 'Doctrine\\ORM\\Query', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1172, 'function' => 'executeIgnoreQueryCache', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array(null, null)), array('file' => '/home/infostatmut/validation_resto_new/src/Repository/RestaurantRepository.php', 'line' => 1208, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/src/Controller/API/APIController.php', 'line' => 758, 'function' => 'updatePoiPosition', 'class' => 'App\\Repository\\RestaurantRepository', 'type' => '->', 'args' => array(' 4.694681735904409', '43.79526112823878', '620304')), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 163, 'function' => 'updatePoiPos', 'class' => 'App\\Controller\\API\\APIController', 'type' => '->', 'args' => array(object(Request), object(RestaurantRepository))), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 75, 'function' => 'handleRaw', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/Kernel.php', 'line' => 202, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1, true)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php', 'line' => 35, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\Kernel', 'type' => '->', 'args' => array(object(Request))), array('file' => '/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php', 'line' => 29, 'function' => 'run', 'class' => 'Symfony\\Component\\Runtime\\Runner\\Symfony\\HttpKernelRunner', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/public/index.php', 'line' => 5, 'args' => array('/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php'), 'function' => 'require_once')), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1)))
     (vendor/symfony/serializer/Normalizer/AbstractObjectNormalizer.php:216)
  at Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer->normalize(object(Exception), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1, '00000000000004410000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:161)
  at Symfony\Component\Serializer\Serializer->normalize(object(Exception), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(object(Exception), object(Query)), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1976, 'function' => 'convert', 'class' => 'Doctrine\\DBAL\\Driver\\API\\PostgreSQL\\ExceptionConverter', 'type' => '->', 'args' => array(object(Exception), object(Query))), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array(array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1976, 'function' => 'convert', 'class' => 'Doctrine\\DBAL\\Driver\\API\\PostgreSQL\\ExceptionConverter', 'type' => '->', 'args' => array(object(Exception), object(Query))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1918, 'function' => 'handleDriverException', 'class' => 'Doctrine\\DBAL\\Connection', 'type' => '->', 'args' => array(object(Exception), object(Query))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/dbal/src/Connection.php', 'line' => 1218, 'function' => 'convertExceptionDuringQuery', 'class' => 'Doctrine\\DBAL\\Connection', 'type' => '->', 'args' => array(object(Exception), 'UPDATE ogresto.restaurant SET poi_y = ?, poi_x = ?, modif_position = ? WHERE id = ?', array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query/Exec/SingleTableDeleteUpdateExecutor.php', 'line' => 43, 'function' => 'executeStatement', 'class' => 'Doctrine\\DBAL\\Connection', 'type' => '->', 'args' => array('UPDATE ogresto.restaurant SET poi_y = ?, poi_x = ?, modif_position = ? WHERE id = ?', array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/Query.php', 'line' => 330, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor', 'type' => '->', 'args' => array(object(Connection), array('43.79526112823878', ' 4.694681735904409', true, '620304'), array(2, 2, 'boolean', 2))), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1218, 'function' => '_doExecute', 'class' => 'Doctrine\\ORM\\Query', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/vendor/doctrine/orm/src/AbstractQuery.php', 'line' => 1172, 'function' => 'executeIgnoreQueryCache', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array(null, null)), array('file' => '/home/infostatmut/validation_resto_new/src/Repository/RestaurantRepository.php', 'line' => 1208, 'function' => 'execute', 'class' => 'Doctrine\\ORM\\AbstractQuery', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/src/Controller/API/APIController.php', 'line' => 758, 'function' => 'updatePoiPosition', 'class' => 'App\\Repository\\RestaurantRepository', 'type' => '->', 'args' => array(' 4.694681735904409', '43.79526112823878', '620304')), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 163, 'function' => 'updatePoiPos', 'class' => 'App\\Controller\\API\\APIController', 'type' => '->', 'args' => array(object(Request), object(RestaurantRepository))), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/HttpKernel.php', 'line' => 75, 'function' => 'handleRaw', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/http-kernel/Kernel.php', 'line' => 202, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\HttpKernel', 'type' => '->', 'args' => array(object(Request), 1, true)), array('file' => '/home/infostatmut/validation_resto_new/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php', 'line' => 35, 'function' => 'handle', 'class' => 'Symfony\\Component\\HttpKernel\\Kernel', 'type' => '->', 'args' => array(object(Request))), array('file' => '/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php', 'line' => 29, 'function' => 'run', 'class' => 'Symfony\\Component\\Runtime\\Runner\\Symfony\\HttpKernelRunner', 'type' => '->', 'args' => array()), array('file' => '/home/infostatmut/validation_resto_new/public/index.php', 'line' => 5, 'args' => array('/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php'), 'function' => 'require_once')), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1)))
     (vendor/symfony/serializer/Normalizer/AbstractObjectNormalizer.php:216)
  at Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer->normalize(object(DriverException), 'json', array('json_encode_options' => 15, 'cache_key' => 'd59bf68b74ef30c2a8e62936fae25e90', 'circular_reference_limit_counters' => array('00000000000004380000000000000000' => 1)))
     (vendor/symfony/serializer/Serializer.php:161)
  at Symfony\Component\Serializer\Serializer->normalize(object(DriverException), 'json', array('json_encode_options' => 15))
     (vendor/symfony/serializer/Serializer.php:179)
  at Symfony\Component\Serializer\Serializer->normalize(array('erreur' => object(DriverException)), 'json', array('json_encode_options' => 15))
     (vendor/symfony/serializer/Serializer.php:134)
  at Symfony\Component\Serializer\Serializer->serialize(array('erreur' => object(DriverException)), 'json', array('json_encode_options' => 15))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:146)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->json(array('erreur' => object(DriverException)), 500)
     (src/Controller/API/APIController.php:761)
  at App\Controller\API\APIController->updatePoiPos(object(Request), object(RestaurantRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/infostatmut/validation_resto_new/vendor/autoload_runtime.php')
     (public/index.php:5)