Tribe__Tickets__RSVP__Attendance_Totals::get_total_going()
The total number of RSVPs for this event that indicate they are going.
Return
(int)
Source
File: src/Tribe/RSVP/Attendance_Totals.php
public function get_total_going() {
/**
* Returns the total going count for an event.
*
* @param int $total_going
* @param int $original_total_going
* @param int $event_id
*/
return (int) apply_filters( 'tribe_tickets_rsvp_get_total_going', $this->total_going, $this->total_going, $this->event_id );
}