diff options
author | Camil Staps | 2016-07-28 17:41:53 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-28 17:41:53 +0200 |
commit | b6e22a4d9da5e25165255ee134c15a4a16b79f62 (patch) | |
tree | 16fecd3665275fc6c6fd6d5a5e2203859b7aacd0 /classes/Contact.php | |
parent | Minor fix (diff) |
Fix documentation issues
Diffstat (limited to 'classes/Contact.php')
-rw-r--r-- | classes/Contact.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/Contact.php b/classes/Contact.php index ed2a80d..6ab4803 100644 --- a/classes/Contact.php +++ b/classes/Contact.php @@ -25,10 +25,16 @@ * An interface to the contact table in the database */ class Contact extends Model { + /** {@inheritDoc} */ public $table = 'contact', $fillable_columns = ['clientId', 'name', 'email', 'address', 'address_2', 'postal_code', 'city', 'country', 'language']; + /** + * {@inheritDoc} + * @param $key {@inheritDoc} + * @param $value {@inheritDoc} + */ protected function mutator($key, $value) { switch ($key) { case 'language': |