aboutsummaryrefslogtreecommitdiff
path: root/classes/Model.php
diff options
context:
space:
mode:
authorCamil Staps2016-07-27 16:48:53 +0200
committerCamil Staps2016-07-27 17:08:12 +0200
commit21455bfd1004c4a3153050ac5995b8dc680c2042 (patch)
treeb448f9d94cd9b6addb6d6b391001c418243cc13d /classes/Model.php
parentRemoved error reporting (diff)
Class names start with a capital
Diffstat (limited to 'classes/Model.php')
-rw-r--r--classes/Model.php2
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;
}
}