Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Jul 5, 2020
1 parent 6a55fcc commit 173b541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConnectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ interface ConnectionFactory
* @param Response $response
* @param Socket $socket
* @param Options $options
* @param CompressionContext|null $compressionFactory
* @param CompressionContext|null $compressionContext
*
* @return Connection
*/
public function createConnection(
Response $response,
Socket $socket,
Options $options,
?CompressionContext $compressionFactory = null
?CompressionContext $compressionContext = null
): Connection;
}

0 comments on commit 173b541

Please sign in to comment.