diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-07-08 11:11:53 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-07-08 11:11:53 -0400 |
| commit | 2d796d48df6f4371111bcbc776ea781e4f45c831 (patch) | |
| tree | 8b70da2114d71d2835b2f58eb2d43083a3ff5a6f /private/Model/creds.php | |
| parent | 3b75177580e536ce309d44759eb4d1f772c987ce (diff) | |
| download | august-offensive-2d796d48df6f4371111bcbc776ea781e4f45c831.tar.gz august-offensive-2d796d48df6f4371111bcbc776ea781e4f45c831.tar.bz2 august-offensive-2d796d48df6f4371111bcbc776ea781e4f45c831.zip | |
Expand on query and result, begin sql design
Diffstat (limited to 'private/Model/creds.php')
| -rw-r--r-- | private/Model/creds.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/private/Model/creds.php b/private/Model/creds.php new file mode 100644 index 0000000..d7b62f1 --- /dev/null +++ b/private/Model/creds.php @@ -0,0 +1,11 @@ +<?php + +declare(strict_types=1); + +$cred = new \stdClass(); +$cred->host = "localhost"; +$cred->port = "5432"; +$cred->dbName = "august"; +$cred->login = "smallg"; +$cred->password = "abc"; + |
