handle(); } public function unbind_phone() { return (new UnBindPhoneService)->handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: 'site/list',methods: 'GET')] #[Scene(scene: 'site_list')] public function userSiteList() { return (new SiteService)->handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: 'site/add',methods: 'post')] #[Scene(scene: 'add_site')] public function addSite() { return (new SiteService)->add(); } /** * @return array */ #[RequestMapping(path: 'site/del',methods: 'post')] #[Scene(scene: 'del_site')] public function delSite() { return (new SiteService)->del(); } /** * @return array */ #[RequestMapping(path: 'invite/list',methods: 'GET')] #[Scene(scene: 'invite_list')] public function inviteList() { return (new InviteListService)->handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: 'logOut',methods: 'GET')] #[Scene(scene: 'logOut')] public function logOut() { return (new LogOutService)->handle(); } }