1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-06 11:58:30 +01:00
phorge-phorge/src/applications/differential/mail/DifferentialMail.php

16 lines
344 B
PHP
Raw Normal View History

2011-01-25 17:17:19 -08:00
<?php
abstract class DifferentialMail extends PhabricatorMail {
2011-01-25 17:17:19 -08:00
public static function newReplyHandlerForRevision(
DifferentialRevision $revision) {
2012-03-15 12:15:23 -07:00
$reply_handler = PhabricatorEnv::newObjectFromConfig(
'metamta.differential.reply-handler');
$reply_handler->setMailReceiver($revision);
return $reply_handler;
}
2011-01-25 17:17:19 -08:00
}