Skip to content

Commit

Permalink
Fix phpcs errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 24, 2017
1 parent a046ed9 commit dff88e6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/TestCase/Mailer/Transport/SmtpTransportTest.php
Expand Up @@ -93,10 +93,7 @@ public function testConnectEhlo()
$this->socket->expects($this->any())->method('connect')->will($this->returnValue(true));
$this->socket->expects($this->any())
->method('read')
->will($this->onConsecutiveCalls(
"220 Welcome message\r\n",
"250 Accepted\r\n"
));
->will($this->onConsecutiveCalls("220 Welcome message\r\n", "250 Accepted\r\n"));
$this->socket->expects($this->once())->method('write')->with("EHLO localhost\r\n");
$this->SmtpTransport->connect();
}
Expand Down

0 comments on commit dff88e6

Please sign in to comment.