0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00

Coding standards

This commit is contained in:
Synchro 2015-11-11 17:04:35 +01:00
parent 5443a5ce02
commit f2a08a26c0

View File

@ -2979,7 +2979,10 @@ class PHPMailer
{
$this->RecipientsQueue = array_filter(
$this->RecipientsQueue,
function ($params) use ($kind) { return $params[0] != $kind; });
function ($params) use ($kind) {
return $params[0] != $kind;
}
);
}
/**