BSF_Analytics_Stats::instance()

Create only once instance of a class.


Description


Return

(object)


Source

File: admin/bsf-analytics/class-bsf-analytics-stats.php

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

			return self::$instance;
		}

Changelog

Changelog
Version Description
1.0.0 Introduced.


User Contributed Notes

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