Merge pull request #8086 from tonicospinelli/testing

Cover endOfPeriod method of the Navigation class
This commit is contained in:
James Cole
2023-10-23 19:51:59 +02:00
committed by GitHub
7 changed files with 196 additions and 25 deletions

View File

@@ -83,6 +83,7 @@ class CreateDatabase extends Command
$pdo = new PDO($dsn, env('DB_USERNAME'), env('DB_PASSWORD'), $options);
} catch (PDOException $e) {
$this->friendlyError(sprintf('Error when connecting to DB: %s', $e->getMessage()));
return 1;
}
// only continue when no error.