1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-28 14:39:28 +01:00
openstamanager/lib/classes/Util/Singleton.php
Thomas Zilio f17a64a1bd Bugfix
Fix di un bug relativo alla classe Translator e all'ordinamento di default delle tabelle con Datatables primitivo (Log, ...).
2017-08-28 12:16:14 +02:00

41 lines
678 B
PHP

<?php
namespace Util;
/**
* @since 2.3
*/
abstract class Singleton
{
/** @var \Util\Singleton Oggetti istanziati */
protected static $instance = [];
protected function __construct()
{
}
/**
* Restituisce l'istanza della classe in oggetto.
*
* @return Singleton
*/
public static function getInstance()
{
$class = get_called_class(); // late-static-bound class name
if (!isset(self::$instance[$class])) {
self::$instance[$class] = new static();
}
return self::$instance[$class];
}
private function __clone()
{
}
private function __wakeup()
{
}
}