Main::instance()

Singleton Instance of the LifterLMS_CLI class


Return Return

(LifterLMSCLILifterLMS_CLI)


Top ↑

Source Source

File: libraries/lifterlms-cli/src/Main.php

	public static function instance() {

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

		return self::$instance;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
0.0.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.