phplibrary/core/registry.php
Фёдор Подлеснов 651a841187 Удалил json.php
2016-07-21 14:17:03 +03:00

23 lines
476 B
PHP

<?php
/**
* http://www.patternsforphp.com/wiki/Registry
* http://www.patternsforphp.com/wiki/Singleton
* http://www.phppatterns.com/docs/design/the_registry?s=registry
*/
require_once 'core/settings.php';
class Registry extends Settings
{
static $instance = null;
/**
*/
static public function getInstance ()
{
if (self::$instance == null) {
self::$instance = new Registry();
}
return self::$instance;
}
}