blob: 8bca9941ded1f19c474271668d4ccb272a2eb793 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
declare(strict_types=1);
$cred = new \stdClass();
$cred->host = "localhost";
$cred->port = "5432";
$cred->dbName = "";
$cred->login = "";
$cred->password = "";
|