handle(); } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: 'dynamic', methods: 'GET')] public function dynamic(): array { return (new DynamicProxyService)->handle(); } /** * @return array */ #[RequestMapping(path: 'payment', methods: 'GET')] public function payment(): array { return (new AopService)->handle(); } }