Пример #1
0
 /**
  * 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();
 }