Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/legalpad/mail/LegalpadReplyHandler.php
13462 views
1
<?php
2
3
final class LegalpadReplyHandler
4
extends PhabricatorApplicationTransactionReplyHandler {
5
6
public function validateMailReceiver($mail_receiver) {
7
if (!($mail_receiver instanceof LegalpadDocument)) {
8
throw new Exception(pht('Mail receiver is not a LegalpadDocument!'));
9
}
10
}
11
12
public function getObjectPrefix() {
13
return 'L';
14
}
15
16
}
17
18