Пример #1
0
 /**
  * Get registry
  * 
  * @return Core_Registry
  */
 public static function getInstance()
 {
     if (null === self::$_singleton) {
         self::$_singleton = new self();
     }
     return self::$_singleton;
 }