Symfony Exception

PDOException AdapterException ConnectionException

HTTP 500 Internal Server Error

Unable to open connection

Exceptions 3

Propel\Runtime\Connection\Exception\ ConnectionException

  1.             $connectionClass $defaultConnectionClass;
  2.         }
  3.         try {
  4.             $adapterConnection $adapter->getConnection($configuration);
  5.         } catch (AdapterException $e) {
  6.             throw new ConnectionException('Unable to open connection'0$e);
  7.         }
  8.         /** @var \Propel\Runtime\Connection\ConnectionInterface $connection */
  9.         $connection = new $connectionClass($adapterConnection);
  10.         // load any connection options from the config file
  1.         if ($this->connection === null) {
  2.             if ($adapter === null) {
  3.                 throw new InvalidArgumentException('$adapter not given');
  4.             }
  5.             $this->connection ConnectionFactory::create($this->configuration$adapter);
  6.             $this->connection->setName($this->getName());
  7.         }
  8.         return $this->connection;
  9.     }
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface
  3.      */
  4.     public function getReadConnection(?AdapterInterface $adapter null)
  5.     {
  6.         return $this->getWriteConnection($adapter);
  7.     }
  8.     /**
  9.      * @return void
  10.      */
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface A database connection
  3.      */
  4.     public function getReadConnection($name)
  5.     {
  6.         return $this->getConnectionManager($name)->getReadConnection($this->getAdapter($name));
  7.     }
  8.     /**
  9.      * Shortcut to define a single connection for a datasource.
  10.      *
  1.      * @return int the number of results
  2.      */
  3.     public function count(?ConnectionInterface $con null)
  4.     {
  5.         if ($con === null) {
  6.             $con Propel::getServiceContainer()->getReadConnection($this->getDbName());
  7.         }
  8.         $this->basePreSelect($con);
  9.         $criteria $this->isKeepQuery() ? clone $this $this;
  10.         $criteria->setDbName($this->getDbName()); // Set the correct dbName
  1.         $qForCount = clone $this->getQuery();
  2.         $count $qForCount
  3.             ->offset(0)
  4.             ->limit(-1)
  5.             ->count($this->con);
  6.         $this->setNbResults($hasMaxRecordLimit min($count$maxRecordLimit) : $count);
  7.         $q $this->getQuery()
  8.             ->offset(0)
  1.     public function paginate($page 1$maxPerPage 10, ?ConnectionInterface $con null)
  2.     {
  3.         $criteria $this->isKeepQuery() ? clone $this $this;
  4.         $pager = new PropelModelPager($criteria$maxPerPage);
  5.         $pager->setPage($page);
  6.         $pager->init($con);
  7.         return $pager;
  8.     }
  9.     /**
ModelCriteria->paginate(1, 28) in src/Controller/Home/HomeController.php (line 81)
  1.         $featured AdQuery::create()
  2.             ->filterByStatus(1)
  3.             ->filterByShowonfeatured(1)
  4.             ->orderByFeaturedOnTopUpdatedAt(\Criteria::DESC)
  5.             ->paginate($page$maxItem);
  6.         $home_ads AdQuery::create()
  7.             ->filterByStatus(1)
  8.             ->filterByShowonhome(1)
  9.             ->orderByHomeOnTopUpdatedAt(\Criteria::DESC)
in vendor/symfony/http-kernel/HttpKernel.php->indexAction (line 158)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 96)
  1. $kernel = new Kernel($env$debug);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

Propel\Runtime\Adapter\Exception\ AdapterException

Unable to open PDO connection

  1.         try {
  2.             $con = new PdoConnection($dsn$user$password$driver_options);
  3.             $this->initConnection($con, isset($conparams['settings']) && is_array($conparams['settings']) ? $conparams['settings'] : []);
  4.         } catch (PDOException $e) {
  5.             throw new AdapterException('Unable to open PDO connection'0$e);
  6.         }
  7.         return $con;
  8.     }
  1.             $connectionClass $configuration['classname'];
  2.         } else {
  3.             $connectionClass $defaultConnectionClass;
  4.         }
  5.         try {
  6.             $adapterConnection $adapter->getConnection($configuration);
  7.         } catch (AdapterException $e) {
  8.             throw new ConnectionException('Unable to open connection'0$e);
  9.         }
  10.         /** @var \Propel\Runtime\Connection\ConnectionInterface $connection */
  11.         $connection = new $connectionClass($adapterConnection);
  1.         if ($this->connection === null) {
  2.             if ($adapter === null) {
  3.                 throw new InvalidArgumentException('$adapter not given');
  4.             }
  5.             $this->connection ConnectionFactory::create($this->configuration$adapter);
  6.             $this->connection->setName($this->getName());
  7.         }
  8.         return $this->connection;
  9.     }
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface
  3.      */
  4.     public function getReadConnection(?AdapterInterface $adapter null)
  5.     {
  6.         return $this->getWriteConnection($adapter);
  7.     }
  8.     /**
  9.      * @return void
  10.      */
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface A database connection
  3.      */
  4.     public function getReadConnection($name)
  5.     {
  6.         return $this->getConnectionManager($name)->getReadConnection($this->getAdapter($name));
  7.     }
  8.     /**
  9.      * Shortcut to define a single connection for a datasource.
  10.      *
  1.      * @return int the number of results
  2.      */
  3.     public function count(?ConnectionInterface $con null)
  4.     {
  5.         if ($con === null) {
  6.             $con Propel::getServiceContainer()->getReadConnection($this->getDbName());
  7.         }
  8.         $this->basePreSelect($con);
  9.         $criteria $this->isKeepQuery() ? clone $this $this;
  10.         $criteria->setDbName($this->getDbName()); // Set the correct dbName
  1.         $qForCount = clone $this->getQuery();
  2.         $count $qForCount
  3.             ->offset(0)
  4.             ->limit(-1)
  5.             ->count($this->con);
  6.         $this->setNbResults($hasMaxRecordLimit min($count$maxRecordLimit) : $count);
  7.         $q $this->getQuery()
  8.             ->offset(0)
  1.     public function paginate($page 1$maxPerPage 10, ?ConnectionInterface $con null)
  2.     {
  3.         $criteria $this->isKeepQuery() ? clone $this $this;
  4.         $pager = new PropelModelPager($criteria$maxPerPage);
  5.         $pager->setPage($page);
  6.         $pager->init($con);
  7.         return $pager;
  8.     }
  9.     /**
ModelCriteria->paginate(1, 28) in src/Controller/Home/HomeController.php (line 81)
  1.         $featured AdQuery::create()
  2.             ->filterByStatus(1)
  3.             ->filterByShowonfeatured(1)
  4.             ->orderByFeaturedOnTopUpdatedAt(\Criteria::DESC)
  5.             ->paginate($page$maxItem);
  6.         $home_ads AdQuery::create()
  7.             ->filterByStatus(1)
  8.             ->filterByShowonhome(1)
  9.             ->orderByHomeOnTopUpdatedAt(\Criteria::DESC)
in vendor/symfony/http-kernel/HttpKernel.php->indexAction (line 158)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 96)
  1. $kernel = new Kernel($env$debug);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

PDOException

SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)

  1.                 $index = (is_numeric($key)) ? $key constant('PDO::' $key);
  2.                 $pdoOptions[$index] = $option;
  3.             }
  4.         }
  5.         $this->pdo = new PDO($dsn$user$password$pdoOptions);
  6.         $this->pdo->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
  7.     }
  8.     /**
  9.      * Sets a connection attribute.
  1.                 $index = (is_numeric($key)) ? $key constant('PDO::' $key);
  2.                 $pdoOptions[$index] = $option;
  3.             }
  4.         }
  5.         $this->pdo = new PDO($dsn$user$password$pdoOptions);
  6.         $this->pdo->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
  7.     }
  8.     /**
  9.      * Sets a connection attribute.
  1.                 $driver_options[$option] = $value;
  2.             }
  3.         }
  4.         try {
  5.             $con = new PdoConnection($dsn$user$password$driver_options);
  6.             $this->initConnection($con, isset($conparams['settings']) && is_array($conparams['settings']) ? $conparams['settings'] : []);
  7.         } catch (PDOException $e) {
  8.             throw new AdapterException('Unable to open PDO connection'0$e);
  9.         }
  1.             $connectionClass $configuration['classname'];
  2.         } else {
  3.             $connectionClass $defaultConnectionClass;
  4.         }
  5.         try {
  6.             $adapterConnection $adapter->getConnection($configuration);
  7.         } catch (AdapterException $e) {
  8.             throw new ConnectionException('Unable to open connection'0$e);
  9.         }
  10.         /** @var \Propel\Runtime\Connection\ConnectionInterface $connection */
  11.         $connection = new $connectionClass($adapterConnection);
  1.         if ($this->connection === null) {
  2.             if ($adapter === null) {
  3.                 throw new InvalidArgumentException('$adapter not given');
  4.             }
  5.             $this->connection ConnectionFactory::create($this->configuration$adapter);
  6.             $this->connection->setName($this->getName());
  7.         }
  8.         return $this->connection;
  9.     }
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface
  3.      */
  4.     public function getReadConnection(?AdapterInterface $adapter null)
  5.     {
  6.         return $this->getWriteConnection($adapter);
  7.     }
  8.     /**
  9.      * @return void
  10.      */
  1.      *
  2.      * @return \Propel\Runtime\Connection\ConnectionInterface A database connection
  3.      */
  4.     public function getReadConnection($name)
  5.     {
  6.         return $this->getConnectionManager($name)->getReadConnection($this->getAdapter($name));
  7.     }
  8.     /**
  9.      * Shortcut to define a single connection for a datasource.
  10.      *
  1.      * @return int the number of results
  2.      */
  3.     public function count(?ConnectionInterface $con null)
  4.     {
  5.         if ($con === null) {
  6.             $con Propel::getServiceContainer()->getReadConnection($this->getDbName());
  7.         }
  8.         $this->basePreSelect($con);
  9.         $criteria $this->isKeepQuery() ? clone $this $this;
  10.         $criteria->setDbName($this->getDbName()); // Set the correct dbName
  1.         $qForCount = clone $this->getQuery();
  2.         $count $qForCount
  3.             ->offset(0)
  4.             ->limit(-1)
  5.             ->count($this->con);
  6.         $this->setNbResults($hasMaxRecordLimit min($count$maxRecordLimit) : $count);
  7.         $q $this->getQuery()
  8.             ->offset(0)
  1.     public function paginate($page 1$maxPerPage 10, ?ConnectionInterface $con null)
  2.     {
  3.         $criteria $this->isKeepQuery() ? clone $this $this;
  4.         $pager = new PropelModelPager($criteria$maxPerPage);
  5.         $pager->setPage($page);
  6.         $pager->init($con);
  7.         return $pager;
  8.     }
  9.     /**
ModelCriteria->paginate(1, 28) in src/Controller/Home/HomeController.php (line 81)
  1.         $featured AdQuery::create()
  2.             ->filterByStatus(1)
  3.             ->filterByShowonfeatured(1)
  4.             ->orderByFeaturedOnTopUpdatedAt(\Criteria::DESC)
  5.             ->paginate($page$maxItem);
  6.         $home_ads AdQuery::create()
  7.             ->filterByStatus(1)
  8.             ->filterByShowonhome(1)
  9.             ->orderByHomeOnTopUpdatedAt(\Criteria::DESC)
in vendor/symfony/http-kernel/HttpKernel.php->indexAction (line 158)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 96)
  1. $kernel = new Kernel($env$debug);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

Logs

No log messages

Stack Traces 3

[3/3] ConnectionException

Propel\Runtime\Connection\Exception\ConnectionException:
Unable to open connection

  at vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionFactory.php:42
  at Propel\Runtime\Connection\ConnectionFactory::create(array('adapter' => 'mysql', 'classname' => 'Propel\\Runtime\\Connection\\DebugPDO', 'dsn' => 'mysql:host=localhost;dbname=abilityclassified;port=3306', 'user' => 'root', 'password' => '', 'attributes' => array('ATTR_EMULATE_PREPARES' => false), 'options' => array('ATTR_PERSISTENT' => false), 'model_paths' => array('src', 'vendor'), 'slaves' => array()), object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:96)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getWriteConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:110)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getReadConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/ServiceContainer/StandardServiceContainer.php:396)
  at Propel\Runtime\ServiceContainer\StandardServiceContainer->getReadConnection('default')
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1491)
  at Propel\Runtime\ActiveQuery\ModelCriteria->count(null)
     (vendor/propel/propel/src/Propel/Runtime/Util/PropelModelPager.php:120)
  at Propel\Runtime\Util\PropelModelPager->init(null)
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1582)
  at Propel\Runtime\ActiveQuery\ModelCriteria->paginate(1, 28)
     (src/Controller/Home/HomeController.php:81)
  at App\Controller\Home\HomeController->indexAction(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:96)

[2/3] AdapterException

Propel\Runtime\Adapter\Exception\AdapterException:
Unable to open PDO connection

  at vendor/propel/propel/src/Propel/Runtime/Adapter/Pdo/PdoAdapter.php:72
  at Propel\Runtime\Adapter\Pdo\PdoAdapter->getConnection(array('adapter' => 'mysql', 'classname' => 'Propel\\Runtime\\Connection\\DebugPDO', 'dsn' => 'mysql:host=localhost;dbname=abilityclassified;port=3306', 'user' => 'root', 'password' => '', 'attributes' => array('ATTR_EMULATE_PREPARES' => false), 'options' => array('ATTR_PERSISTENT' => false), 'model_paths' => array('src', 'vendor'), 'slaves' => array()))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionFactory.php:40)
  at Propel\Runtime\Connection\ConnectionFactory::create(array('adapter' => 'mysql', 'classname' => 'Propel\\Runtime\\Connection\\DebugPDO', 'dsn' => 'mysql:host=localhost;dbname=abilityclassified;port=3306', 'user' => 'root', 'password' => '', 'attributes' => array('ATTR_EMULATE_PREPARES' => false), 'options' => array('ATTR_PERSISTENT' => false), 'model_paths' => array('src', 'vendor'), 'slaves' => array()), object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:96)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getWriteConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:110)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getReadConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/ServiceContainer/StandardServiceContainer.php:396)
  at Propel\Runtime\ServiceContainer\StandardServiceContainer->getReadConnection('default')
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1491)
  at Propel\Runtime\ActiveQuery\ModelCriteria->count(null)
     (vendor/propel/propel/src/Propel/Runtime/Util/PropelModelPager.php:120)
  at Propel\Runtime\Util\PropelModelPager->init(null)
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1582)
  at Propel\Runtime\ActiveQuery\ModelCriteria->paginate(1, 28)
     (src/Controller/Home/HomeController.php:81)
  at App\Controller\Home\HomeController->indexAction(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:96)

[1/3] PDOException

PDOException:
SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO)

  at vendor/propel/propel/src/Propel/Runtime/Connection/PdoConnection.php:82
  at PDO->__construct('mysql:host=localhost;dbname=abilityclassified;port=3306', 'root', '', array(false))
     (vendor/propel/propel/src/Propel/Runtime/Connection/PdoConnection.php:82)
  at Propel\Runtime\Connection\PdoConnection->__construct('mysql:host=localhost;dbname=abilityclassified;port=3306', 'root', '', array('ATTR_PERSISTENT' => false))
     (vendor/propel/propel/src/Propel/Runtime/Adapter/Pdo/PdoAdapter.php:69)
  at Propel\Runtime\Adapter\Pdo\PdoAdapter->getConnection(array('adapter' => 'mysql', 'classname' => 'Propel\\Runtime\\Connection\\DebugPDO', 'dsn' => 'mysql:host=localhost;dbname=abilityclassified;port=3306', 'user' => 'root', 'password' => '', 'attributes' => array('ATTR_EMULATE_PREPARES' => false), 'options' => array('ATTR_PERSISTENT' => false), 'model_paths' => array('src', 'vendor'), 'slaves' => array()))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionFactory.php:40)
  at Propel\Runtime\Connection\ConnectionFactory::create(array('adapter' => 'mysql', 'classname' => 'Propel\\Runtime\\Connection\\DebugPDO', 'dsn' => 'mysql:host=localhost;dbname=abilityclassified;port=3306', 'user' => 'root', 'password' => '', 'attributes' => array('ATTR_EMULATE_PREPARES' => false), 'options' => array('ATTR_PERSISTENT' => false), 'model_paths' => array('src', 'vendor'), 'slaves' => array()), object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:96)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getWriteConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/Connection/ConnectionManagerSingle.php:110)
  at Propel\Runtime\Connection\ConnectionManagerSingle->getReadConnection(object(MysqlAdapter))
     (vendor/propel/propel/src/Propel/Runtime/ServiceContainer/StandardServiceContainer.php:396)
  at Propel\Runtime\ServiceContainer\StandardServiceContainer->getReadConnection('default')
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1491)
  at Propel\Runtime\ActiveQuery\ModelCriteria->count(null)
     (vendor/propel/propel/src/Propel/Runtime/Util/PropelModelPager.php:120)
  at Propel\Runtime\Util\PropelModelPager->init(null)
     (vendor/propel/propel/src/Propel/Runtime/ActiveQuery/ModelCriteria.php:1582)
  at Propel\Runtime\ActiveQuery\ModelCriteria->paginate(1, 28)
     (src/Controller/Home/HomeController.php:81)
  at App\Controller\Home\HomeController->indexAction(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:96)