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