Skip to content

Commit

Permalink
Fix expire in PasswordResets
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbrouwers committed Sep 17, 2015
1 parent 7f23089 commit 987bfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Passwords/PasswordResetServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function registerTokenRepository()
return new DoctrineTokenRepository(
$this->app->make(ManagerRegistry::class)->getManagerForClass(PasswordReminder::class),
$app['config']['app.key'],
$app['config']->get('auth.reminder.expire', 60)
$app['config']->get('auth.password.expire', 60)
);
});
}
Expand Down

0 comments on commit 987bfa5

Please sign in to comment.