Example #1
0
 /**
  * Return this class only one time.
  *
  * @return Phprojekt An instance of Phprojekt.
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
         self::$_instance->_initialize();
     }
     return self::$_instance;
 }