Beispiel #1
0
 /**
  * Синглтон
  *
  * @return Modules_Guitestcase_Framework_Manager
  */
 public static function getInstance()
 {
     if (null == self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }