codiad/components/reporting/class.reporting.php
2020-06-29 10:59:37 -04:00

26 lines
No EOL
382 B
PHP

<?php
class Reporting {
protected static $instance = null;
function __construct() {}
/**
* Return an instance of this class.
*
* @since ${current_version}
* @return object A single instance of this class.
*/
public static function get_instance() {
if( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
}
?>