mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
59 lines
904 B
PHP
59 lines
904 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Singleton;
|
|
|
|
/**
|
|
* class Singleton
|
|
*/
|
|
class Singleton
|
|
{
|
|
/**
|
|
* @var Singleton reference to singleton instance
|
|
*/
|
|
private static $instance;
|
|
|
|
/**
|
|
* gets the instance via lazy initialization (created on first usage)
|
|
*
|
|
* @return self
|
|
*/
|
|
public static function getInstance()
|
|
{
|
|
|
|
if (null === static::$instance) {
|
|
static::$instance = new static;
|
|
}
|
|
|
|
return static::$instance;
|
|
}
|
|
|
|
/**
|
|
* is not allowed to call from outside: private!
|
|
*
|
|
*/
|
|
private function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* prevent the instance from being cloned
|
|
*
|
|
* @return void
|
|
*/
|
|
private function __clone()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* prevent from being unserialized
|
|
*
|
|
* @return void
|
|
*/
|
|
private function __wakeup()
|
|
{
|
|
|
|
}
|
|
}
|