add(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: "del", methods: "GET")] #[Scene(scene: "del")] public function del() { return (new PurchaseService)->del(); } /** * @return array */ #[RequestMapping(path: "list", methods: "GET")] #[Scene(scene: "list")] public function list(): array { return (new PurchaseService)->handle(); } }