1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 20:52:44 +08:00
2021-03-30 11:05:07 +08:00

21 lines
383 B
PHP

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