예제 #1
0
파일: API.php 프로젝트: nnnnathann/piwik
 /**
  * Singleton
  * @return Piwik_ExampleAPI_API
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }
예제 #2
0
파일: API.php 프로젝트: Doluci/tomatocart
 /**
  * Singleton
  * @return Piwik_ExampleAPI_API
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }