コード例 #1
0
ファイル: API.php プロジェクト: nnnnathann/piwik
 /**
  * @return Piwik_Goals_API
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: API.php プロジェクト: klando/pgpiwik
 public static function getInstance()
 {
     if (self::$instance == null) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }