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());
        });
    }