0.2.3 #2

Merged
Sieciech merged 18 commits from 0.2.3 into master 2021-03-08 10:29:29 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 661406db67 - Show all commits

View File

@ -6,10 +6,10 @@ class Credentials {
public function __construct( public function __construct(
public string $host, public string $host,
public int $port = null, public ?int $port = null,
public string $database = null, public ?string $database = null,
public string $user = null, public ?string $user = null,
public string $password = null) { public ?string $password = null) {
} }
} }