本文整理汇总了PHP中Token::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Token::getInstance方法的具体用法?PHP Token::getInstance怎么用?PHP Token::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Token
的用法示例。
在下文中一共展示了Token::getInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: login
/**
* Generate a token to authenticate a user
*
* @return mixed
*/
public function login($device_id = null, $device_type = null, $device_token = null)
{
// clear old sessions for any user with: same(device_id, os)
$to_remove = Token::where('device_id', '=', $device_id)->where('device_os', '=', $device_type)->delete();
$token = Token::getInstance();
$token->user_id = $this->_id;
$token->device_id = $device_id;
$token->device_os = $device_type;
$token->device_token = $device_token;
$token->save();
return $token;
}
示例2: set_token
/**
* undocumented function
*
* @return void
* @author
**/
private function set_token()
{
$this->token = Token::getInstance();
}