handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: 'site/list',methods: 'post')] #[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(); } }