Example #1
0
 /**
  * The singleton pattern
  * @static
  * @return IssueCache
  */
 public static function getInstance()
 {
     if (NULL == self::$instance) {
         self::$instance = new PluginDataProvider();
     }
     return self::$instance;
 }