Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ TableNotFoundException
) {return new NotNullConstraintViolationException($exception, $query);}if (str_contains($exception->getMessage(), 'no such table:')) {return new TableNotFoundException($exception, $query);}if (str_contains($exception->getMessage(), 'already exists')) {return new TableExistsException($exception, $query);}
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/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 963)
): array {$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 110)
*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{$persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php
->
findBy
(line 73)
* @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{return ($this->repository ??= $this->resolveRepository())->findBy($criteria, $orderBy, $limit, $offset);}/** {@inheritDoc} */public function findOneBy(array $criteria, array|null $orderBy = null): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 96)
** @phpstan-return list<T> The entities.*/public function findAll(): array{return $this->findBy([]);}/*** Finds entities by a set of criteria.*
return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);}$user = $userRepository->findOneBy(['email' => $postEmail]);if (!$user) {$user = new User();$user->setEmail($postEmail);$plaintextPassword = 'test123';$hashedPassword = $passwordHasher->hashPassword($user, $plaintextPassword);
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(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 193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 7)
use App\Kernel;date_default_timezone_set('UTC');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/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 963)
): array {$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 110)
*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{$persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php
->
findBy
(line 73)
* @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{return ($this->repository ??= $this->resolveRepository())->findBy($criteria, $orderBy, $limit, $offset);}/** {@inheritDoc} */public function findOneBy(array $criteria, array|null $orderBy = null): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 96)
** @phpstan-return list<T> The entities.*/public function findAll(): array{return $this->findBy([]);}/*** Finds entities by a set of criteria.*
return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);}$user = $userRepository->findOneBy(['email' => $postEmail]);if (!$user) {$user = new User();$user->setEmail($postEmail);$plaintextPassword = 'test123';$hashedPassword = $passwordHasher->hashPassword($user, $plaintextPassword);
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(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 193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 7)
use App\Kernel;date_default_timezone_set('UTC');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/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 963)
): array {$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 110)
*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{$persister = $this->em->getUnitOfWork()->getEntityPersister($this->entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
in
vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php
->
findBy
(line 73)
* @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class*/public function findBy(array $criteria, array|null $orderBy = null, int|null $limit = null, int|null $offset = null): array{return ($this->repository ??= $this->resolveRepository())->findBy($criteria, $orderBy, $limit, $offset);}/** {@inheritDoc} */public function findOneBy(array $criteria, array|null $orderBy = null): object|null{
in
vendor/doctrine/orm/src/EntityRepository.php
->
findBy
(line 96)
** @phpstan-return list<T> The entities.*/public function findAll(): array{return $this->findBy([]);}/*** Finds entities by a set of criteria.*
return $this->redirectToRoute('app_home', ['spot_id' => $request->request->getInt('spot_id')]);}$user = $userRepository->findOneBy(['email' => $postEmail]);if (!$user) {$user = new User();$user->setEmail($postEmail);$plaintextPassword = 'test123';$hashedPassword = $passwordHasher->hashPassword($user, $plaintextPassword);
in
vendor/symfony/http-kernel/HttpKernel.php
->
index
(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 193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 7)
use App\Kernel;date_default_timezone_set('UTC');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 11:33:11 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "908fb5"
},
"request_uri": "https://swellpal.app/_profiler/908fb5",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
TableNotFoundException
|
|---|
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[HY000]: General error: 1 no such table: user
at vendor/doctrine/dbal/src/Driver/API/SQLite/ExceptionConverter.php:52
at Doctrine\DBAL\Driver\API\SQLite\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/Persisters/Entity/BasicEntityPersister.php:963)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:110)
at Doctrine\ORM\EntityRepository->findBy()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
(vendor/doctrine/orm/src/EntityRepository.php:96)
at Doctrine\ORM\EntityRepository->findAll()
(src/Controller/AppController.php:63)
at App\Controller\AppController->index()
(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:193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
(public/index.php:7)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000]: General error: 1 no such table: user
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/Persisters/Entity/BasicEntityPersister.php:963)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:110)
at Doctrine\ORM\EntityRepository->findBy()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
(vendor/doctrine/orm/src/EntityRepository.php:96)
at Doctrine\ORM\EntityRepository->findAll()
(src/Controller/AppController.php:63)
at App\Controller\AppController->index()
(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:193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
(public/index.php:7)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[HY000]: General error: 1 no such table: user
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/Persisters/Entity/BasicEntityPersister.php:963)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:110)
at Doctrine\ORM\EntityRepository->findBy()
(vendor/doctrine/doctrine-bundle/src/Repository/ServiceEntityRepositoryProxy.php:73)
at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryProxy->findBy()
(vendor/doctrine/orm/src/EntityRepository.php:96)
at Doctrine\ORM\EntityRepository->findAll()
(src/Controller/AppController.php:63)
at App\Controller\AppController->index()
(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:193)
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/swellpal.app/httpdocs/vendor/autoload_runtime.php')
(public/index.php:7)
|