Tribe__Admin__Notices::instance()

Static Singleton Factory Method


Return

(self)


Top ↑

Source

File: src/Tribe/Admin/Notices.php

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

		return self::$instance;
	}

Top ↑

Changelog

Changelog
Version Description
4.3 Introduced.