Cartalyst\Sentinel\Laravel\SentinelServiceProvider::registerReminders PHP Method

registerReminders() protected method

Registers the reminders.
protected registerReminders ( ) : void
return void
    protected function registerReminders()
    {
        $this->app->singleton('sentinel.reminders', function ($app) {
            $config = $app['config']->get('cartalyst.sentinel.reminders');
            return new IlluminateReminderRepository($app['sentinel.users'], $config['model'], $config['expires']);
        });
    }