/** * Purges all entries in safelist of particular user. * * @param string $iUserId User identifier. * * @return bool */ public function clearSafetySenders($iUserId) { $bResult = $this->oConnection->Execute($this->oCommandCreator->clearSafetySendersQuery($iUserId)); $this->throwDbExceptionIfExist(); return $bResult; }