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