Skip to content

Commit

Permalink
Fix line exceeding max-line-length
Browse files Browse the repository at this point in the history
  • Loading branch information
bzikarsky committed Jul 29, 2019
1 parent 5fe9ccc commit a2028d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Gelf/Test/Transport/TcpTransportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ public function validateTransport(
public function testSslOptionsAreUsed()
{
$sslOptions = $this->getMock('\\Gelf\\Transport\\SslOptions');
$sslOptions->expects($this->exactly(2))->method('toStreamContext')->will($this->returnValue(array('ssl' => null)));
$sslOptions->expects($this->exactly(2))
->method('toStreamContext')
->will($this->returnValue(array('ssl' => null)));

$transport = new TcpTransport("localhost", "12202", $sslOptions);

Expand Down

0 comments on commit a2028d3

Please sign in to comment.