Viewing file: PasswordResetServiceProvider.php (1.42 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php namespace Jenssegers\Mongodb\Auth;
use Illuminate\Auth\Passwords\PasswordResetServiceProvider as BasePasswordResetServiceProvider;
class PasswordResetServiceProvider extends BasePasswordResetServiceProvider { /** * Register the token repository implementation. * * @return void */ protected function registerTokenRepository() { $this->app->singleton('auth.password.tokens', function ($app) { $connection = $app['db']->connection();
// The database token repository is an implementation of the token repository // interface, and is responsible for the actual storing of auth tokens and // their e-mail addresses. We will inject this table and hash key to it. $table = $app['config']['auth.password.table'];
$key = $app['config']['app.key'];
$expire = $app['config']->get('auth.password.expire', 60);
return new DatabaseTokenRepository($connection, $table, $key, $expire); }); }
/** * Register the password broker instance. * * @return void */ protected function registerPasswordBroker() { $this->app->singleton('auth.password', function ($app) { return new PasswordBrokerManager($app); });
$this->app->bind('auth.password.broker', function ($app) { return $app->make('auth.password')->broker(); }); } }
|