Tribe__Tickets__RSVP__Attendance_Totals::get_total_not_going()

The total number of RSVPs for this event that indicate they are not going.

Contents


Return

(int)


Top ↑

Source

File: src/Tribe/RSVP/Attendance_Totals.php

	public function get_total_not_going() {
		/**
		 * Returns the total not going count for an event.
		 *
		 * @param int $total_not_going
		 * @param int $original_total_not_going
		 * @param int $event_id
		 */
		return (int) apply_filters( 'tribe_tickets_rsvp_get_total_not_going', $this->total_not_going, $this->total_not_going, $this->event_id );
	}