Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Riki Popeliš committed Jul 19, 2024
1 parent f62cf0b commit bc162fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit_mysql_5_7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

name: PHPunit PHP ${{ matrix.php }}

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct(
) {
$this->name = $name;
try {
$connection = new Connection($dsn, $user, $password, $options);
$connection = new Connection($dsn, $user, $password, $options ?? []);
$cacheStorage = new MemoryStorage();
$structure = new Structure($connection, $cacheStorage);
$database = new Explorer($connection, $structure);
Expand Down

0 comments on commit bc162fe

Please sign in to comment.