1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-22 10:18:48 +02:00
phorge-phorge/src/applications/differential/mail/DifferentialMail.php

16 lines
344 B
PHP
Raw Normal View History

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