Пример #1
0
 /**
  * gibt einen instance vom type mysql zurück
  *
  * @return MySqlDb 
  *
  */
 public static function getInstance()
 {
     if (self::$Instance === null) {
         self::$Instance = new MySqlDb();
     }
     return self::$Instance;
 }