diff options
author | Camil Staps | 2016-07-27 16:48:53 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-27 17:08:12 +0200 |
commit | 21455bfd1004c4a3153050ac5995b8dc680c2042 (patch) | |
tree | b448f9d94cd9b6addb6d6b391001c418243cc13d /classes/Model.php | |
parent | Removed error reporting (diff) |
Class names start with a capital
Diffstat (limited to 'classes/Model.php')
-rw-r--r-- | classes/Model.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Model.php b/classes/Model.php index 37c719a..68f045e 100644 --- a/classes/Model.php +++ b/classes/Model.php @@ -140,6 +140,6 @@ abstract class Model { * @return string The database table */ private function table() { - return constants::db_prefix . $this->table; + return Constants::db_prefix . $this->table; } } |