1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-28 13:21:37 +08:00
2020-07-26 20:32:52 +08:00

21 lines
396 B
PHP

<?php
namespace App\Services\Frontend\My;
use App\Services\Frontend\Service as FrontendService;
use App\Services\Frontend\User\FavoriteList as UserFavoriteListService;
class FavoriteList extends FrontendService
{
public function handle()
{
$user = $this->getLoginUser();
$service = new UserFavoriteListService();
return $service->handle($user->id);
}
}