本文整理汇总了PHP中UserService::getLoggedInUser方法的典型用法代码示例。如果您正苦于以下问题:PHP UserService::getLoggedInUser方法的具体用法?PHP UserService::getLoggedInUser怎么用?PHP UserService::getLoggedInUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserService
的用法示例。
在下文中一共展示了UserService::getLoggedInUser方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: show
public function show($id)
{
$user = UserService::getLoggedInUser();
$item = DB::transaction(function () use($id, $user) {
if ($user) {
Item::updateStatus($id, $user, 'read');
}
$item = Item::with('tags', 'userStatuses')->find($id);
return $item;
});
if (!$item) {
return Response::json(array('error_code' => Config::get('constants.ERROR.ITEM_NOT_FOUND'), 'error_message' => 'Item not found'), 500);
}
if ($user) {
return Response::json(array('success_code' => 'OK', 'data' => $item->toArray($user)));
} else {
return Response::json(array('success_code' => 'OK', 'data' => $item->toArray()));
}
}
示例2: __construct
protected function __construct()
{
$this->user = UserService::getLoggedInUser();
}