Tribe__Tickets_Plus__Attendees_List::instance()

Get (and instantiate, if necessary) the instance of the class

Contents


Return

(self)


Top ↑

Source

File: src/Tribe/Attendees_List.php

	public static function instance() {
		static $instance;

		if ( ! $instance instanceof self ) {
			$instance = new self;
		}

		return $instance;
	}