json( [ 'message' => 'Welcome to your new controller!', 'path' => 'src/Controller/DefaultController.php', ] ); } /** * @Get( * path = "/my-polls", * name = "app_get_my_polls", * requirements = {"access_token"="\w+"} * ) */ public function showMyPollsAction() { return $this->json( [ 'message' => 'here are your polls', ] ); } }