blob: d7b62f1b9e4f0686571fb476bdd69674149422c8 (
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 = "august";
$cred->login = "smallg";
$cred->password = "abc";
|