diff --git a/src/LaunchDarkly/Impl/Integrations/PHPRedisFeatureRequester.php b/src/LaunchDarkly/Impl/Integrations/PHPRedisFeatureRequester.php index 9e04400c..3ac230bd 100644 --- a/src/LaunchDarkly/Impl/Integrations/PHPRedisFeatureRequester.php +++ b/src/LaunchDarkly/Impl/Integrations/PHPRedisFeatureRequester.php @@ -19,7 +19,7 @@ public function __construct($baseUri, $sdkKey, $options) $this->_prefix = isset($options['redis_prefix']) ? $options['redis_prefix'] : 'launchdarkly'; if (isset($this->_options['phpredis_client']) && $this->_options['phpredis_client'] instanceof Redis) { - $this->_connection = $this->_options['phpredis_client']; + $this->_redisInstance = $this->_options['phpredis_client']; } else { $this->_redisOptions = array( "timeout" => isset($options['redis_timeout']) ? $options['redis_timeout'] : 5,