diff options
Diffstat (limited to 'private/model')
| -rw-r--r-- | private/model/Connection.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/private/model/Connection.php b/private/model/Connection.php new file mode 100644 index 0000000..26632f7 --- /dev/null +++ b/private/model/Connection.php @@ -0,0 +1,19 @@ +<?php + +namespace AugustOffensive\model; + +/** + * Model connection class for connecting to database via PDO. + */ +class Connection +{ + /** + * Initiates connection to PostGreSQL database. + * + * @return Connection + */ + public function __construct () + { + // + } +} |
