mirror of
https://github.com/xevidos/codiad.git
synced 2025-03-13 20:18:43 +01:00
26 lines
No EOL
382 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
?>
|