Apply fixes from StyleCI

This commit is contained in:
Marcel Pociot
2020-09-08 08:10:57 +00:00
committed by StyleCI Bot
parent 1fc277fd5e
commit 077be1cee3
2 changed files with 3 additions and 3 deletions

View File

@@ -322,7 +322,7 @@ class TunnelTest extends TestCase
$this->testTcpServer = new \React\Socket\Server(8085, $this->loop);
$this->testTcpServer->on('connection', function (\React\Socket\ConnectionInterface $connection) {
$connection->write("Hello " . $connection->getRemoteAddress() . "!\n");
$connection->write('Hello '.$connection->getRemoteAddress()."!\n");
$connection->pipe($connection);
});