Skip to content

Commit

Permalink
Fixed some linting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvdvleuten committed Dec 2, 2016
1 parent f95c842 commit cfdc4ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Connection/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

use Rvdv\Nntp\Command\CommandInterface;
use Rvdv\Nntp\Connection\Connection;
use Rvdv\Nntp\Connection\ConnectionInterface;
use Rvdv\Nntp\Exception\SocketException;
use Rvdv\Nntp\Response\Response;
use Rvdv\Nntp\Socket\Socket;
Expand Down Expand Up @@ -115,7 +114,7 @@ public function testConnectionCallsCorrespondingHandlerWhenSendingCommand()
$result = 'result';

$command = $this->getMock(CommandInterface::class, [
'__invoke', 'isMultiLine', 'isCompressed', 'onPostingAllowed'
'__invoke', 'isMultiLine', 'isCompressed', 'onPostingAllowed',
]);

$command->expects($this->once())
Expand Down

0 comments on commit cfdc4ac

Please sign in to comment.