BSF_Analytics_Stats::instance()
Create only once instance of a class.
Description
Return
(object)
Source
File: inc/lib/bsf-analytics/class-bsf-analytics-stats.php
public static function instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |