summaryrefslogtreecommitdiff
path: root/src/Model/Model.php
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2018-04-29 22:24:25 +0100
committerFbenas <philbeansburton@gmail.com>2018-04-29 22:24:25 +0100
commitc223ab602cbe7f6db7321ba547164971d63d7bcd (patch)
treea4a73aab1d8082b2f96f899fc4d51040fe5ed85e /src/Model/Model.php
parentaf0cd60fc5fd2939477dfccd4c0e78892e76d5ba (diff)
WIP
Diffstat (limited to 'src/Model/Model.php')
-rw-r--r--src/Model/Model.php19
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
+ }
+}