예제 #1
0
파일: Store.php 프로젝트: neilgarb/yadda
 /**
  * Returns a singleton instance of Yadda_Store.
  * 
  * @return Yadda_Store
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }