Tribe__Tickets__RSVP__Attendance_Totals::get_total_rsvps()
The total number of RSVPs received for this event.
Return
(int)
Source
File: src/Tribe/RSVP/Attendance_Totals.php
public function get_total_rsvps() {
/**
* Returns the total RSVP count for an event.
*
* @param int $total_rsvps
* @param int $original_total_rsvps
* @param int $event_id
*/
return (int) apply_filters( 'tribe_tickets_rsvp_get_total_rsvps', $this->total_rsvps, $this->total_rsvps, $this->event_id );
}