Skip to content

Commit 173b541

Browse files
committed
Fix variable name
1 parent 6a55fcc commit 173b541

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ConnectionFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ interface ConnectionFactory
1313
* @param Response $response
1414
* @param Socket $socket
1515
* @param Options $options
16-
* @param CompressionContext|null $compressionFactory
16+
* @param CompressionContext|null $compressionContext
1717
*
1818
* @return Connection
1919
*/
2020
public function createConnection(
2121
Response $response,
2222
Socket $socket,
2323
Options $options,
24-
?CompressionContext $compressionFactory = null
24+
?CompressionContext $compressionContext = null
2525
): Connection;
2626
}

0 commit comments

Comments
 (0)