Astra_Addon_Filesystem::instance()

Get instance of Astra_Addon_Filesystem


Description


Return

(Astra_Addon_Filesystem)


Source

File: classes/class-astra-addon-filesystem.php

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

		return self::$instance;
	}

Changelog

Changelog
Version Description
2.6.4 Introduced.


User Contributed Notes

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