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