Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
1557,1569,1586 => new UniqueConstraintViolationException($exception, $query),1054,1166,1611 => new InvalidFieldNameException($exception, $query),1052,1060,1110 => new NonUniqueFieldNameException($exception, $query),1064,1149,
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1460)
private function handleDriverException(Driver\Exception $driverException,?Query $query,): DriverException {$this->exceptionConverter ??= $this->driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1396)
Driver\Exception $e,string $sql,array $params = [],array $types = [],): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/** @internal */final public function convertException(Driver\Exception $e): DriverException{
in
vendor/doctrine/dbal/src/Connection.php
->
convertExceptionDuringQuery
(line 809)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}}/*** Executes a caching query.
in
vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php
->
executeQuery
(line 27)
/*** {@inheritDoc}*/public function execute(Connection $conn, array $params, array $types): Result{return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/src/Query.php
->
execute
(line 296)
$sqlParams,$types,$this->em->getConnection()->getParams(),);return $executor->execute($this->em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php
->
execute
(line 35)
) {}public function getEntities(): array{return $this->queryBuilder->getQuery()->execute();}public function getEntitiesByIds(string $identifier, array $values): array{if (null !== $this->queryBuilder->getMaxResults() || 0 < (int) $this->queryBuilder->getFirstResult()) {
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php
->
getEntities
(line 53)
}protected function loadChoices(): iterable{return $this->objectLoader? $this->objectLoader->getEntities(): $this->manager->getRepository($this->class)->findAll();}protected function doLoadValuesForChoices(array $choices): array{
in
vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php
->
loadChoices
(line 29)
/*** @final*/public function loadChoiceList(?callable $value = null): ChoiceListInterface{return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);}public function loadChoicesForValues(array $values, ?callable $value = null): array{if (!$values) {
in
vendor/symfony/form/ChoiceList/LazyChoiceList.php
->
loadChoiceList
(line 56)
$this->value = null === $value ? null : $value(...);}public function getChoices(): array{return $this->loader->loadChoiceList($this->value)->getChoices();}public function getValues(): array{return $this->loader->loadChoiceList($this->value)->getValues();
in
vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php
->
getChoices
(line 60)
public function createView(ChoiceListInterface $list, array|callable|null $preferredChoices = null, callable|false|null $label = null, ?callable $index = null, ?callable $groupBy = null, array|callable|null $attr = null, array|callable $labelTranslationParameters = [], bool $duplicatePreferredChoices = true): ChoiceListView{$preferredViews = [];$preferredViewsOrder = [];$otherViews = [];$choices = $list->getChoices();$keys = $list->getOriginalKeys();if (!\is_callable($preferredChoices)) {if (!$preferredChoices) {$preferredChoices = null;
in
vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php
->
createView
(line 178)
if ($labelTranslationParameters instanceof PropertyPath) {$labelTranslationParameters = static fn ($choice) => $accessor->getValue($choice, $labelTranslationParameters);}return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php
->
createView
(line 187)
} elseif ([] !== $labelTranslationParameters) {$cache = false;}if (!$cache) {return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createView
(line 478)
);}private function createChoiceListView(ChoiceListInterface $choiceList, array $options): ChoiceListView{return $this->choiceListFactory->createView($choiceList,$options['preferred_choices'],$options['choice_label'],$options['choice_name'],$options['group_by'],
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createChoiceListView
(line 233)
$choiceList = $form->getConfig()->getAttribute('choice_list');/** @var ChoiceListView $choiceListView */$choiceListView = $form->getConfig()->hasAttribute('choice_list_view')? $form->getConfig()->getAttribute('choice_list_view'): $this->createChoiceListView($choiceList, $options);$view->vars = array_replace($view->vars, ['multiple' => $options['multiple'],'expanded' => $options['expanded'],'preferred_choices' => $choiceListView->preferredChoices,
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 111)
public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);}}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 109)
}}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/Form.php
->
buildView
(line 892)
// The methods createView(), buildView() and finishView() are called// explicitly here in order to be able to override either of them// in a custom resolved form type.$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}
in
vendor/symfony/form/Form.php
->
createView
(line 895)
$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}$this->sort($view->children);$type->finishView($view, $this, $options);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
createView
(line 454)
throw new \LogicException(\sprintf('You cannot use the "%s" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".', $method));}foreach ($parameters as $k => $v) {if ($v instanceof FormInterface) {$parameters[$k] = $v->createView();}}if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 467)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 279)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
'method' => 'GET']);$page = $request->query->getInt('page', 1);$result = $developers->findAllByBusinessType('developer', $page);return $this->render('web/list_real_estate_developers.html.twig', ['total_developers' => $developers->countAllByBusinessType('developer'),'paginator' => $result,'form' => $form]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
listDevelopers
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 191)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
in
public_html/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 24)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
::
new
(line 62)
$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);}}public function quote(string $value): string{
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 39)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int|string{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
->
query
(line 55)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 804)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php
->
executeQuery
(line 27)
/*** {@inheritDoc}*/public function execute(Connection $conn, array $params, array $types): Result{return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/src/Query.php
->
execute
(line 296)
$sqlParams,$types,$this->em->getConnection()->getParams(),);return $executor->execute($this->em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php
->
execute
(line 35)
) {}public function getEntities(): array{return $this->queryBuilder->getQuery()->execute();}public function getEntitiesByIds(string $identifier, array $values): array{if (null !== $this->queryBuilder->getMaxResults() || 0 < (int) $this->queryBuilder->getFirstResult()) {
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php
->
getEntities
(line 53)
}protected function loadChoices(): iterable{return $this->objectLoader? $this->objectLoader->getEntities(): $this->manager->getRepository($this->class)->findAll();}protected function doLoadValuesForChoices(array $choices): array{
in
vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php
->
loadChoices
(line 29)
/*** @final*/public function loadChoiceList(?callable $value = null): ChoiceListInterface{return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);}public function loadChoicesForValues(array $values, ?callable $value = null): array{if (!$values) {
in
vendor/symfony/form/ChoiceList/LazyChoiceList.php
->
loadChoiceList
(line 56)
$this->value = null === $value ? null : $value(...);}public function getChoices(): array{return $this->loader->loadChoiceList($this->value)->getChoices();}public function getValues(): array{return $this->loader->loadChoiceList($this->value)->getValues();
in
vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php
->
getChoices
(line 60)
public function createView(ChoiceListInterface $list, array|callable|null $preferredChoices = null, callable|false|null $label = null, ?callable $index = null, ?callable $groupBy = null, array|callable|null $attr = null, array|callable $labelTranslationParameters = [], bool $duplicatePreferredChoices = true): ChoiceListView{$preferredViews = [];$preferredViewsOrder = [];$otherViews = [];$choices = $list->getChoices();$keys = $list->getOriginalKeys();if (!\is_callable($preferredChoices)) {if (!$preferredChoices) {$preferredChoices = null;
in
vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php
->
createView
(line 178)
if ($labelTranslationParameters instanceof PropertyPath) {$labelTranslationParameters = static fn ($choice) => $accessor->getValue($choice, $labelTranslationParameters);}return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php
->
createView
(line 187)
} elseif ([] !== $labelTranslationParameters) {$cache = false;}if (!$cache) {return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createView
(line 478)
);}private function createChoiceListView(ChoiceListInterface $choiceList, array $options): ChoiceListView{return $this->choiceListFactory->createView($choiceList,$options['preferred_choices'],$options['choice_label'],$options['choice_name'],$options['group_by'],
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createChoiceListView
(line 233)
$choiceList = $form->getConfig()->getAttribute('choice_list');/** @var ChoiceListView $choiceListView */$choiceListView = $form->getConfig()->hasAttribute('choice_list_view')? $form->getConfig()->getAttribute('choice_list_view'): $this->createChoiceListView($choiceList, $options);$view->vars = array_replace($view->vars, ['multiple' => $options['multiple'],'expanded' => $options['expanded'],'preferred_choices' => $choiceListView->preferredChoices,
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 111)
public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);}}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 109)
}}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/Form.php
->
buildView
(line 892)
// The methods createView(), buildView() and finishView() are called// explicitly here in order to be able to override either of them// in a custom resolved form type.$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}
in
vendor/symfony/form/Form.php
->
createView
(line 895)
$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}$this->sort($view->children);$type->finishView($view, $this, $options);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
createView
(line 454)
throw new \LogicException(\sprintf('You cannot use the "%s" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".', $method));}foreach ($parameters as $k => $v) {if ($v instanceof FormInterface) {$parameters[$k] = $v->createView();}}if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 467)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 279)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
'method' => 'GET']);$page = $request->query->getInt('page', 1);$result = $developers->findAllByBusinessType('developer', $page);return $this->render('web/list_real_estate_developers.html.twig', ['total_developers' => $developers->countAllByBusinessType('developer'),'paginator' => $result,'form' => $form]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
listDevelopers
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 191)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
in
public_html/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
(line 57)
}public function query(string $sql): Result{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
->
query
(line 57)
}public function query(string $sql): Result{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 39)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int|string{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
->
query
(line 55)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 804)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php
->
executeQuery
(line 27)
/*** {@inheritDoc}*/public function execute(Connection $conn, array $params, array $types): Result{return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/src/Query.php
->
execute
(line 296)
$sqlParams,$types,$this->em->getConnection()->getParams(),);return $executor->execute($this->em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php
->
execute
(line 35)
) {}public function getEntities(): array{return $this->queryBuilder->getQuery()->execute();}public function getEntitiesByIds(string $identifier, array $values): array{if (null !== $this->queryBuilder->getMaxResults() || 0 < (int) $this->queryBuilder->getFirstResult()) {
in
vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php
->
getEntities
(line 53)
}protected function loadChoices(): iterable{return $this->objectLoader? $this->objectLoader->getEntities(): $this->manager->getRepository($this->class)->findAll();}protected function doLoadValuesForChoices(array $choices): array{
in
vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php
->
loadChoices
(line 29)
/*** @final*/public function loadChoiceList(?callable $value = null): ChoiceListInterface{return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);}public function loadChoicesForValues(array $values, ?callable $value = null): array{if (!$values) {
in
vendor/symfony/form/ChoiceList/LazyChoiceList.php
->
loadChoiceList
(line 56)
$this->value = null === $value ? null : $value(...);}public function getChoices(): array{return $this->loader->loadChoiceList($this->value)->getChoices();}public function getValues(): array{return $this->loader->loadChoiceList($this->value)->getValues();
in
vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php
->
getChoices
(line 60)
public function createView(ChoiceListInterface $list, array|callable|null $preferredChoices = null, callable|false|null $label = null, ?callable $index = null, ?callable $groupBy = null, array|callable|null $attr = null, array|callable $labelTranslationParameters = [], bool $duplicatePreferredChoices = true): ChoiceListView{$preferredViews = [];$preferredViewsOrder = [];$otherViews = [];$choices = $list->getChoices();$keys = $list->getOriginalKeys();if (!\is_callable($preferredChoices)) {if (!$preferredChoices) {$preferredChoices = null;
in
vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php
->
createView
(line 178)
if ($labelTranslationParameters instanceof PropertyPath) {$labelTranslationParameters = static fn ($choice) => $accessor->getValue($choice, $labelTranslationParameters);}return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php
->
createView
(line 187)
} elseif ([] !== $labelTranslationParameters) {$cache = false;}if (!$cache) {return $this->decoratedFactory->createView($list,$preferredChoices,$label,$index,$groupBy,
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createView
(line 478)
);}private function createChoiceListView(ChoiceListInterface $choiceList, array $options): ChoiceListView{return $this->choiceListFactory->createView($choiceList,$options['preferred_choices'],$options['choice_label'],$options['choice_name'],$options['group_by'],
in
vendor/symfony/form/Extension/Core/Type/ChoiceType.php
->
createChoiceListView
(line 233)
$choiceList = $form->getConfig()->getAttribute('choice_list');/** @var ChoiceListView $choiceListView */$choiceListView = $form->getConfig()->hasAttribute('choice_list_view')? $form->getConfig()->getAttribute('choice_list_view'): $this->createChoiceListView($choiceList, $options);$view->vars = array_replace($view->vars, ['multiple' => $options['multiple'],'expanded' => $options['expanded'],'preferred_choices' => $choiceListView->preferredChoices,
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 111)
public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);}}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/ResolvedFormType.php
->
buildView
(line 109)
}}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->parent?->buildView($view, $form, $options);$this->innerType->buildView($view, $form, $options);foreach ($this->typeExtensions as $extension) {$extension->buildView($view, $form, $options);
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildView
(line 78)
$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);}public function finishView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->finishView($view, $form, $options);
in
vendor/symfony/form/Form.php
->
buildView
(line 892)
// The methods createView(), buildView() and finishView() are called// explicitly here in order to be able to override either of them// in a custom resolved form type.$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}
in
vendor/symfony/form/Form.php
->
createView
(line 895)
$view = $type->createView($this, $parent);$type->buildView($view, $this, $options);foreach ($this->children as $name => $child) {$view->children[$name] = $child->createView($view);}$this->sort($view->children);$type->finishView($view, $this, $options);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
createView
(line 454)
throw new \LogicException(\sprintf('You cannot use the "%s" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".', $method));}foreach ($parameters as $k => $v) {if ($v instanceof FormInterface) {$parameters[$k] = $v->createView();}}if (null !== $block) {return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 467)
return $this->container->get('twig')->render($view, $parameters);}private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response{$content = $this->doRenderView($view, $block, $parameters, $method);$response ??= new Response();if (200 === $response->getStatusCode()) {foreach ($parameters as $v) {if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 279)
* If an invalid form is found in the list of parameters, a 422 status code is returned.* Forms found in parameters are auto-cast to form views.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}/*** Renders a block in a view.*
'method' => 'GET']);$page = $request->query->getInt('page', 1);$result = $developers->findAllByBusinessType('developer', $page);return $this->render('web/list_real_estate_developers.html.twig', ['total_developers' => $developers->countAllByBusinessType('developer'),'paginator' => $result,'form' => $form]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
listDevelopers
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 191)
if (!$this->handlingHttpCache) {$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
in
public_html/index.php
(line 5)
<?phpuse 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:21:00 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "00a391"
},
"request_uri": "https://imobiliare.n46.net/_profiler/00a391",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
InvalidFieldNameException
|
|---|
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'a0_.slug' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:63
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
(vendor/doctrine/dbal/src/Connection.php:809)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27)
at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute()
(vendor/doctrine/orm/src/Query.php:296)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:35)
at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:53)
at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
(vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:29)
at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList()
(vendor/symfony/form/ChoiceList/LazyChoiceList.php:56)
at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
(vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:60)
at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView()
(vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:178)
at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView()
(vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:187)
at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:478)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:233)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView()
(vendor/symfony/form/ResolvedFormType.php:111)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/ResolvedFormType.php:109)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/Form.php:892)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/form/Form.php:895)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:454)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:279)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
(src/Controller/DeveloperController.php:47)
at App\Controller\DeveloperController->listDevelopers()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
(public_html/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'a0_.slug' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:62)
at Doctrine\DBAL\Driver\PDO\Connection->query()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
(vendor/doctrine/dbal/src/Logging/Connection.php:39)
at Doctrine\DBAL\Logging\Connection->query()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query()
(vendor/doctrine/dbal/src/Connection.php:804)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27)
at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute()
(vendor/doctrine/orm/src/Query.php:296)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:35)
at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:53)
at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
(vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:29)
at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList()
(vendor/symfony/form/ChoiceList/LazyChoiceList.php:56)
at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
(vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:60)
at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView()
(vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:178)
at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView()
(vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:187)
at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:478)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:233)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView()
(vendor/symfony/form/ResolvedFormType.php:111)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/ResolvedFormType.php:109)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/Form.php:892)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/form/Form.php:895)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:454)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:279)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
(src/Controller/DeveloperController.php:47)
at App\Controller\DeveloperController->listDevelopers()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
(public_html/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'a0_.slug' in 'SELECT'
at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57
at PDO->query()
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57)
at Doctrine\DBAL\Driver\PDO\Connection->query()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
(vendor/doctrine/dbal/src/Logging/Connection.php:39)
at Doctrine\DBAL\Logging\Connection->query()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query()
(vendor/doctrine/dbal/src/Connection.php:804)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27)
at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute()
(vendor/doctrine/orm/src/Query.php:296)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:35)
at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
(vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:53)
at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
(vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:29)
at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList()
(vendor/symfony/form/ChoiceList/LazyChoiceList.php:56)
at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
(vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:60)
at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView()
(vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:178)
at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView()
(vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:187)
at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:478)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView()
(vendor/symfony/form/Extension/Core/Type/ChoiceType.php:233)
at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView()
(vendor/symfony/form/ResolvedFormType.php:111)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/ResolvedFormType.php:109)
at Symfony\Component\Form\ResolvedFormType->buildView()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:78)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView()
(vendor/symfony/form/Form.php:892)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/form/Form.php:895)
at Symfony\Component\Form\Form->createView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:454)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:467)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:279)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
(src/Controller/DeveloperController.php:47)
at App\Controller\DeveloperController->listDevelopers()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/vhosts/1007/domains/n46.net/imobiliare/vendor/autoload_runtime.php')
(public_html/index.php:5)
|