예제 #1
0
 /**
  * Returns an instance of class.
  *
  * @return OCSAFFILIATES_BOL_ResetPasswordDao
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
예제 #2
0
파일: service.php 프로젝트: vazahat/dudex
 /**
  * @param $resetCodeId
  */
 public function deleteResetCode($resetCodeId)
 {
     $this->resetPasswordDao->deleteById($resetCodeId);
 }