Beispiel #1
0
 public static function getInstance() {
   if( self::$singleton === NULL ) {
     self::$singleton = new self();
   }
   return self::$singleton;
 }