/**
  * Sets a new auth code expiry time.
  *
  * @param string $authCodeExpiryTime Time that will be parsed with strtotime
  * @throws \Exception if string can not be parsed
  * @deprecated Since 0.7.0, will be removed in version 1.0.0, use AuthCodeRepository instead.
  * @see \Tx\Authcode\Domain\Repository\AuthCodeRepository::setAuthCodeExpiryTime()
  */
 public function setAuthCodeExpiryTime($authCodeExpiryTime)
 {
     $this->authCodeRepository->setAuthCodeExpiryTime($authCodeExpiryTime);
 }