Skip to content

Commit 839833f

Browse files
committed
chore: Update type hints to quiet psalm
1 parent bc91e22 commit 839833f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/LaunchDarkly/Impl/Integrations/RedisFeatureRequester.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@
77

88
class RedisFeatureRequester extends FeatureRequesterBase
99
{
10-
/** @var ClientInterface */
11-
public $_connection;
12-
/** @var array */
13-
public $_redisOptions;
14-
/** @var string */
15-
public $_prefix;
10+
public ?ClientInterface $_connection = null;
11+
public ?array $_redisOptions = null;
12+
public ?string $_prefix;
1613

1714
const DEFAULT_PREFIX = 'launchdarkly';
1815

0 commit comments

Comments
 (0)