mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
Remove unused parameter from PhabricatorMailEmailEngine::newEmailThreadingHeaders() call
Summary: `Method PhabricatorMailEmailEngine::newEmailThreadingHeaders() invoked with 1 parameter, 0 required.` Thus remove the parameter from its call in the same class. The called private function does `$mailer = $this->getMailer()` anyway. Test Plan: Read the code. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25747
This commit is contained in:
parent
4e31cadb54
commit
c5c2b8ce5a
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ final class PhabricatorMailEmailEngine
|
||||||
$message->setSubject($subject);
|
$message->setSubject($subject);
|
||||||
|
|
||||||
$headers = $this->newEmailHeaders();
|
$headers = $this->newEmailHeaders();
|
||||||
foreach ($this->newEmailThreadingHeaders($mailer) as $threading_header) {
|
foreach ($this->newEmailThreadingHeaders() as $threading_header) {
|
||||||
$headers[] = $threading_header;
|
$headers[] = $threading_header;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue