diff options
author | Fbenas <philbeansburton@gmail.com> | 2018-05-07 15:24:00 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2018-05-07 15:24:00 +0100 |
commit | 19564c9e18ae456e39bc2c8a306f9e79dd619e11 (patch) | |
tree | bcaa30f4cdc273bd55af7948ed252bda3b4b8412 /src/Model/Model.php | |
parent | 8350b6bd36d3a4bb3a99dfbf67e746f4f815927c (diff) |
Docblock and fix toString functions
Diffstat (limited to 'src/Model/Model.php')
-rw-r--r-- | src/Model/Model.php | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/Model/Model.php b/src/Model/Model.php index f59ab0e..a5775d7 100644 --- a/src/Model/Model.php +++ b/src/Model/Model.php @@ -4,18 +4,9 @@ namespace App\Model; /** * Base model class + * + * @author Phil Burton <phil@pgburton.com> */ class Model { - protected static $inputFile = APP_ROOT . 'data/input.txt'; - - /** - * Init - * - * @author Phil Burton <phil@pgburton.com> - */ - public function __construct() - { - // initalise Model - } } |