aboutsummaryrefslogtreecommitdiff
path: root/classes/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/User.php')
-rw-r--r--classes/User.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/User.php b/classes/User.php
index e3d3f1a..33396db 100644
--- a/classes/User.php
+++ b/classes/User.php
@@ -25,6 +25,7 @@
* An interface to the user table in the database
*/
class User extends Model {
+ /** {@inheritDoc} */
public
$table = 'user',
$fillable_columns = ['username', 'password'];
@@ -55,6 +56,11 @@ class User extends Model {
);
}
+ /**
+ * {@inheritDoc}
+ * @param $key {@inheritDoc}
+ * @param $value {@inheritDoc}
+ */
public function mutator($key, $value) {
switch ($key) {
case 'password':