Automator_Load::get_instance()

Creates singleton instance of class


Return Return

(Uncanny_AutomatorAutomator_Load) $instance The Automator_Load Class


Source Source

File: src/class-automator-load.php

	public static function get_instance() {

		if ( null === self::$instance ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.