Esempio n. 1
0
 /**
  * Enter description here...
  *
  * @return BOL_FlagDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
Esempio n. 2
0
 public function __construct()
 {
     $this->flagDao = BOL_FlagDao::getInstance();
 }