wp-includes/PHPMailer/SMTP.php:773$s private function iterateLines($s) { $start = 0; $length = strlen($s); for ($i = 0; $i < $length; $i++) { $c = $s[$i]; if ($c === "\n" || $c === "\r") { yield substr($s, $start, $i - $start); if ($c === "\r" && $i + 1 < $length && $s[$i + 1] === "\n") { $i++; } $start = $i + 1; } } yield substr($s, $start); }Unchanged from 7.0.4 through 7.1.0.
Signature, return type and hooks compared across 2 parsed releases.
src/wp-includes/PHPMailer/SMTP.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.