Skip to content

Commit 51cddb0

Browse files
Fix operator precedence
&& binds tighter than ?? so a parentheses is needed for desired result
1 parent 577bd39 commit 51cddb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Connection/Factory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ protected function prepareConnection(NodeConnectionInterface $connection)
175175
);
176176
}
177177

178-
if ($parameters->client_info ?? false && !$connection instanceof RelayConnection) {
178+
if (($parameters->client_info ?? false) && !$connection instanceof RelayConnection) {
179179
$connection->addConnectCommand(
180180
new RawCommand('CLIENT', ['SETINFO', 'LIB-NAME', 'predis'])
181181
);

0 commit comments

Comments
 (0)