/**
  * Removes all auth codes from the database where the tstamp is older than the allowed timestamp defined in expiredAuthCodeTimestamp.
  *
  * @deprecated Since 0.7.0, will be removed in version 1.0.0, use AuthCodeRepository instead.
  * @see \Tx\Authcode\Domain\Repository\AuthCodeRepository::deleteExpiredAuthCodesFromDatabase()
  */
 public function deleteExpiredAuthCodesFromDatabase()
 {
     $this->authCodeRepository->deleteExpiredAuthCodesFromDatabase();
 }