Tribe__Tickets_Plus__Attendees_List::instance()
Get (and instantiate, if necessary) the instance of the class
Return
(self)
Source
File: src/Tribe/Attendees_List.php
public static function instance() {
static $instance;
if ( ! $instance instanceof self ) {
$instance = new self;
}
return $instance;
}