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

registerActivationCheckpoint() protected method

Registers the activation checkpoint.
protected registerActivationCheckpoint ( ) : void
return void
    protected function registerActivationCheckpoint()
    {
        $this->registerActivations();
        $this->app->singleton('sentinel.checkpoint.activation', function ($app) {
            return new ActivationCheckpoint($app['sentinel.activations']);
        });
    }