Tribe__Events__Aggregator__Tabs__Favorite::instance()

Static Singleton Factory Method

Contents


Return

(self)


Top ↑

Source

File: src/Tribe/Aggregator/Tabs/Favorite.php

	public static function instance() {
		if ( empty( self::$instance ) ) {
			self::$instance = new self;
		}

		return self::$instance;
	}