From 7c28398cccab986f4307ac6c651640713548c39d Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Sun, 1 Sep 2019 14:56:45 +0200 Subject: [PATCH] More for #1801 --- .php_cs | 4 +++- src/SMTP.php | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.php_cs b/.php_cs index 19ac5281..3bf20468 100644 --- a/.php_cs +++ b/.php_cs @@ -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() diff --git a/src/SMTP.php b/src/SMTP.php index c4d43ed0..e0f42de7 100644 --- a/src/SMTP.php +++ b/src/SMTP.php @@ -1310,7 +1310,7 @@ class SMTP * 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() { @@ -1336,7 +1336,7 @@ class SMTP * 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() */