More for #1801
This commit is contained in:
parent
bb1fe07b28
commit
7c28398ccc
4
.php_cs
4
.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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue