Beispiel #1
0
 /**
  * Create the singleton instance.
  */
 public static function getInstance()
 {
     if (self::$_table === null) {
         self::$_table = new self();
     }
     return self::$_table;
 }