Cartalyst\Sentinel\Laravel\SentinelServiceProvider::registerUsers PHP 메소드

registerUsers() 보호된 메소드

Registers the users.
protected registerUsers ( ) : void
리턴 void
    protected function registerUsers()
    {
        $this->registerHasher();
        $this->app->singleton('sentinel.users', function ($app) {
            $config = $app['config']->get('cartalyst.sentinel.users');
            return new IlluminateUserRepository($app['sentinel.hasher'], $app['events'], $config['model']);
        });
    }