diff --git a/src/Auth.php b/src/Auth.php index 47a7296..0af1a06 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -176,6 +176,8 @@ class Auth { public function register($email, $password, $username = null, callable $callback = null) { $this->throttle(self::THROTTLE_ACTION_REGISTER); + ignore_user_abort(true); + $email = self::validateEmailAddress($email); $password = self::validatePassword($password);