mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-12 00:17:07 +01:00
273372dbdc
Miglioramento del processo di documentazione automatica per il branch gh-pages, con generalizzazione della struttura della classe Auth. Aggiunto sistema per la formattazione automatica del codice sfruttanto PHP CS Fixer (https://github.com/FriendsOfPHP/PHP-CS-Fixer).
41 lines
679 B
PHP
41 lines
679 B
PHP
<?php
|
|
|
|
namespace Util;
|
|
|
|
/**
|
|
* @since 2.3
|
|
*/
|
|
abstract class Singleton
|
|
{
|
|
/** @var \Util\Singleton Oggetto istanziato */
|
|
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 (self::$instance[$class] === null) {
|
|
self::$instance[$class] = new static();
|
|
}
|
|
|
|
return self::$instance[$class];
|
|
}
|
|
|
|
private function __clone()
|
|
{
|
|
}
|
|
|
|
private function __wakeup()
|
|
{
|
|
}
|
|
}
|