1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-09-17 21:29:29 +08:00

21 lines
362 B
PHP

<?php
namespace App\Services\Logic\User\Console;
use App\Services\Logic\Service;
use App\Services\Logic\User\FriendList as UserFriendListService;
class FriendList extends Service
{
public function handle()
{
$user = $this->getLoginUser();
$service = new UserFriendListService();
return $service->handle($user->id);
}
}