コード例 #1
0
ファイル: Account.php プロジェクト: rodrigofns/ExpressoLivre3
 /**
  * the singleton pattern
  *
  * @return Felamimail_Controller_Account
  */
 public static function getInstance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new Felamimail_Controller_Account();
     }
     return self::$_instance;
 }