Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ SyntaxErrorException
Show exception properties
1344,1382,1479,1541,1554,1626 => new SyntaxErrorException($exception, $query),1044,1045,1046,1049,1095,
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/Statement.php
->
convertExceptionDuringQuery
(line 108)
return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}}/*** Executes the statement with the currently bound parameters and return result.
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$pcB = (new ProductConnector())->setConnector($connectorB)->setProduct($product);$em->persist($product);$em->persist($pcA);$em->persist($pcB);$em->flush();$this->addFlash('success', 'Product successfully created.');$editUrl = $adminUrlGenerator->setController(ProductCrudController::class)
in
vendor/symfony/http-kernel/HttpKernel.php
->
create
(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());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static 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/Statement.php
::
new
(line 57)
public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$pcB = (new ProductConnector())->setConnector($connectorB)->setProduct($product);$em->persist($product);$em->persist($pcA);$em->persist($pcB);$em->flush();$this->addFlash('success', 'Product successfully created.');$editUrl = $adminUrlGenerator->setController(ProductCrudController::class)
in
vendor/symfony/http-kernel/HttpKernel.php
->
create
(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());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1060)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 403)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$pcB = (new ProductConnector())->setConnector($connectorB)->setProduct($product);$em->persist($product);$em->persist($pcA);$em->persist($pcB);$em->flush();$this->addFlash('success', 'Product successfully created.');$editUrl = $adminUrlGenerator->setController(ProductCrudController::class)
in
vendor/symfony/http-kernel/HttpKernel.php
->
create
(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());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 19:38:52 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://freakingcable.alexander-a2.com/_profiler/latest?ip=94.139.29.152&type=request",
"method": "GET"
}
|
| INFO 19:38:52 | deprecation |
User Deprecated: Support for MySQL < 8 is deprecated and will be removed in DBAL 5 (AbstractMySQLDriver.php:75 called by AbstractDriverMiddleware.php:32, https://github.com/doctrine/dbal/pull/6343, package doctrine/dbal) {
"exception": {}
}
|
Stack Traces 3
|
[3/3]
SyntaxErrorException
|
|---|
Doctrine\DBAL\Exception\SyntaxErrorException:
An exception occurred while executing a query: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exists) VALUES ('USB-A to USB-3', 'cable', 0)' at line 1
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:78
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/Statement.php:108)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/Admin/PossibleProductsController.php:94)
at App\Controller\Admin\PossibleProductsController->create()
(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/freakingcable.com/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exists) VALUES ('USB-A to USB-3', 'cable', 0)' at line 1
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:57)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/Admin/PossibleProductsController.php:94)
at App\Controller\Admin\PossibleProductsController->create()
(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/freakingcable.com/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exists) VALUES ('USB-A to USB-3', 'cable', 0)' at line 1
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1060)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:403)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/Admin/PossibleProductsController.php:94)
at App\Controller\Admin\PossibleProductsController->create()
(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/freakingcable.com/vendor/autoload_runtime.php')
(public/index.php:5)
|