Cartalyst\Sentinel\Throttling\IlluminateThrottleRepository::getIpThrottles PHP Метод

getIpThrottles() защищенный Метод

Returns the IP address throttles collection.
protected getIpThrottles ( string $ipAddress ) : Illuminate\Database\Eloquent\Collection
$ipAddress string
Результат Illuminate\Database\Eloquent\Collection
    protected function getIpThrottles($ipAddress)
    {
        if (!array_key_exists($ipAddress, $this->ipThrottles)) {
            $this->ipThrottles[$ipAddress] = $this->loadIpThrottles($ipAddress);
        }
        return $this->ipThrottles[$ipAddress];
    }