1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 13:00:23 +08:00
2021-04-09 17:35:31 +08:00

21 lines
387 B
PHP

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