diff options
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': |