示例#1
0
 /**
  * @param $bNew boolean
  * @return FlexiMailer
  */
 public static function getInstance($bNew = false)
 {
     if (self::$oInstance == null || $bNew) {
         self::$oInstance = new FlexiMailer();
     }
     return self::$oInstance;
 }