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

registerThrottleCheckpoint() 보호된 메소드

Registers the throttle checkpoint.
protected registerThrottleCheckpoint ( ) : void
리턴 void
    protected function registerThrottleCheckpoint()
    {
        $this->registerThrottling();
        $this->app->singleton('sentinel.checkpoint.throttle', function ($app) {
            return new ThrottleCheckpoint($app['sentinel.throttling'], $app['request']->getClientIp());
        });
    }