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