diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-21 23:03:15 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-21 23:03:15 -0400 |
| commit | 92465af465886f14f22bb60dd974a93baa9c5322 (patch) | |
| tree | 2f9a660371cab99e842e4a93ad9818128e6e3390 /private/controller | |
| parent | 4406034152597a049de0706520a274f6e6271fe9 (diff) | |
| download | august-offensive-92465af465886f14f22bb60dd974a93baa9c5322.tar.gz august-offensive-92465af465886f14f22bb60dd974a93baa9c5322.tar.bz2 august-offensive-92465af465886f14f22bb60dd974a93baa9c5322.zip | |
Add basic MVC structure with namespacing and PHPDOC (not tested)
Diffstat (limited to 'private/controller')
| -rw-r--r-- | private/controller/Controller.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/private/controller/Controller.php b/private/controller/Controller.php new file mode 100644 index 0000000..73d0210 --- /dev/null +++ b/private/controller/Controller.php @@ -0,0 +1,16 @@ +<?php + +namespace AugustOffensive\controller; + +include '../model/Connection.php'; + +use AugustOffensive\model; + +/** + * Static controller class for interfacing between the view and the model. + */ +class Controller +{ + // +} + |
