diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-24 13:42:16 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-24 13:42:16 -0400 |
| commit | 4a6523cd2da9ccc5a2b4a334e7a33a84f97f1e5b (patch) | |
| tree | 4be0e5a8e22d5e5a5dc1e9cf5e218864a61d361e /private/view/Result.php | |
| parent | 92a7e43b7d4792cdb54eceefd3256324a8eca458 (diff) | |
| download | august-offensive-4a6523cd2da9ccc5a2b4a334e7a33a84f97f1e5b.tar.gz august-offensive-4a6523cd2da9ccc5a2b4a334e7a33a84f97f1e5b.tar.bz2 august-offensive-4a6523cd2da9ccc5a2b4a334e7a33a84f97f1e5b.zip | |
Add creds.php file, attempt to connect to database
Diffstat (limited to 'private/view/Result.php')
| -rw-r--r-- | private/view/Result.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/private/view/Result.php b/private/view/Result.php index 0a2dd95..43e69fc 100644 --- a/private/view/Result.php +++ b/private/view/Result.php @@ -1,5 +1,7 @@ <?php +declare(strict_types = On); + namespace AugustOffensive\view; use AugustOffensive\controller; @@ -28,7 +30,7 @@ class Result * * @return string $result resulting sendback object generated from query. */ - public function collect () + public function collect (): string { // return json_encode(array("Result-Type" => "", "Content" => array())); |
