request->getMethod(); return [ 'method' => $method, 'message' => "Dataflow App", ]; } #[RequestMapping('/favicon.ico', methods: ['GET', 'POST'])] public function favicon() { return []; } #[RequestMapping('/health', methods: 'GET')] public function health() { return [ 'message' => "System status ok", ]; } }