Tribe__Tickets__JSON_LD__Order::instance()

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

Contents


Return

(self)


Top ↑

Source

File: src/Tribe/JSON_LD/Order.php

	public static function instance() {
		static $instance;

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

		return $instance;
	}