diff options
Diffstat (limited to 'src/Model/Model.php')
-rw-r--r-- | src/Model/Model.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Model/Model.php b/src/Model/Model.php new file mode 100644 index 0000000..99847f9 --- /dev/null +++ b/src/Model/Model.php @@ -0,0 +1,19 @@ +<?php + +namespace App\Model; + +/** + * Base model class + */ +class Model +{ + /** + * Init + * + * @author Phil Burton <phil@pgburton.com> + */ + public function __construct() + { + // initalise Model + } +} |