예제 #1
0
파일: queue_dao.php 프로젝트: vazahat/dudex
 /**
  * Returns class instance
  *
  * @return YNSOCIALBRIDGE_BOL_QueueDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
예제 #2
0
 private function __construct()
 {
     $this->queueDao = YNSOCIALBRIDGE_BOL_QueueDao::getInstance();
 }