Created
May 30, 2013 06:59
-
-
Save AmyStephen/5676156 to your computer and use it in GitHub Desktop.
I will never get this time back.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Get the current value (or default) of the specified key or all User Data for null key | |
* | |
* @param null|string $key | |
* @param null|mixed $default | |
* | |
* @return mixed | |
* @since 1.0 | |
* @throws \Molajo\User\Exception\DataException | |
*/ | |
public function getUserData($key = null, $default = null) | |
{ | |
$this->facade_data_instance->getUserData($key, $default); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment