@@ -4,19 +4,19 @@ |
||
| 4 | 4 | |
| 5 | 5 | class Example |
| 6 | 6 | { |
| 7 | - use \ByJG\DesignPattern\Singleton; |
|
| 7 | + use \ByJG\DesignPattern\Singleton; |
|
| 8 | 8 | |
| 9 | - protected $_uniqId; |
|
| 9 | + protected $_uniqId; |
|
| 10 | 10 | |
| 11 | - protected function __construct() |
|
| 12 | - { |
|
| 13 | - $this->_uniqId = rand(0, 1000); |
|
| 14 | - } |
|
| 11 | + protected function __construct() |
|
| 12 | + { |
|
| 13 | + $this->_uniqId = rand(0, 1000); |
|
| 14 | + } |
|
| 15 | 15 | |
| 16 | - public function getId() |
|
| 17 | - { |
|
| 18 | - return $this->_uniqId; |
|
| 19 | - } |
|
| 16 | + public function getId() |
|
| 17 | + { |
|
| 18 | + return $this->_uniqId; |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | 21 | } |
| 22 | 22 | |
@@ -24,10 +24,10 @@ |
||
| 24 | 24 | // This works; |
| 25 | 25 | // Must return the same ID; |
| 26 | 26 | $example1 = Example::getInstance(); |
| 27 | -echo $example1->getId() . "\n"; |
|
| 27 | +echo $example1->getId()."\n"; |
|
| 28 | 28 | |
| 29 | 29 | $example2 = Example::getInstance(); |
| 30 | -echo $example2->getId() . "\n"; |
|
| 30 | +echo $example2->getId()."\n"; |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | // That cannot work! |
@@ -4,31 +4,31 @@ |
||
| 4 | 4 | |
| 5 | 5 | trait Singleton |
| 6 | 6 | { |
| 7 | - protected function __construct() |
|
| 8 | - { |
|
| 9 | - } |
|
| 7 | + protected function __construct() |
|
| 8 | + { |
|
| 9 | + } |
|
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * @throws SingletonException |
|
| 13 | - */ |
|
| 14 | - final private function __clone() |
|
| 15 | - { |
|
| 16 | - throw new SingletonException('You can not clone a singleton.'); |
|
| 17 | - } |
|
| 11 | + /** |
|
| 12 | + * @throws SingletonException |
|
| 13 | + */ |
|
| 14 | + final private function __clone() |
|
| 15 | + { |
|
| 16 | + throw new SingletonException('You can not clone a singleton.'); |
|
| 17 | + } |
|
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * @return static |
|
| 21 | - */ |
|
| 22 | - public static function getInstance() |
|
| 23 | - { |
|
| 24 | - static $instances; |
|
| 19 | + /** |
|
| 20 | + * @return static |
|
| 21 | + */ |
|
| 22 | + public static function getInstance() |
|
| 23 | + { |
|
| 24 | + static $instances; |
|
| 25 | 25 | |
| 26 | - $calledClass = get_called_class(); |
|
| 26 | + $calledClass = get_called_class(); |
|
| 27 | 27 | |
| 28 | - if (!isset($instances[$calledClass])) { |
|
| 29 | - $instances[$calledClass] = new $calledClass(); |
|
| 30 | - } |
|
| 31 | - return $instances[$calledClass]; |
|
| 32 | - } |
|
| 28 | + if (!isset($instances[$calledClass])) { |
|
| 29 | + $instances[$calledClass] = new $calledClass(); |
|
| 30 | + } |
|
| 31 | + return $instances[$calledClass]; |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | 34 | } |