Skip to content

Commit

Permalink
More for PHPMailer#1801
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Sep 1, 2019
1 parent bb1fe07 commit 7c28398
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ return PhpCsFixer\Config::create()
'semicolon_after_instruction' => true,
'simplified_null_return' => true,
'native_function_invocation' => false,
'yoda_style' => false
'yoda_style' => false,
'no_break_comment' => false,
'native_constant_invocation' => false,
])
->setFinder(
PhpCsFixer\Finder::create()
Expand Down
4 changes: 2 additions & 2 deletions src/SMTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ protected function errorHandler($errno, $errmsg, $errfile = '', $errline = 0)
* If no reply has been received yet, it will return null.
* If no pattern was matched, it will return false.
*
* @return bool|null|string
* @return bool|string|null
*/
protected function recordLastTransactionID()
{
Expand All @@ -1336,7 +1336,7 @@ protected function recordLastTransactionID()
* If no reply has been received yet, it will return null.
* If no pattern was matched, it will return false.
*
* @return bool|null|string
* @return bool|string|null
*
* @see recordLastTransactionID()
*/
Expand Down

0 comments on commit 7c28398

Please sign in to comment.