The User Meta allows to simply add, get, update and delete custom meta for the users.
Usermeta::add('user_id', 'meta_key', 'meta_value', true);
The last argument indicates whether the same key should not be added.
$value = Usermeta::get('user_id', 'meta_key', true);
If the second argument is empty ''
all metadata for the user will be retrieved.
The last argument indicates whether to return a single value for the key.
Usermeta::update('user_id', 'meta_key', 'meta_value');
Usermeta::delete('user_id', 'meta_key');
If the second argument is omitted all metadata for the user will be removed.
See src/Hazzard/User/Meta.php
for the full list of methods and arguments.