Beispiel #1
0
 /**
  * Singleton, returns instance
  *
  * @return Piwik_ArchiveProcessing_Record_Manager
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }