1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-11 01:12:41 +01:00
phorge-phorge/src/applications/calendar/mail/PhabricatorCalendarReplyHandler.php

19 lines
423 B
PHP
Raw Normal View History

<?php
final class PhabricatorCalendarReplyHandler
extends PhabricatorApplicationTransactionReplyHandler {
public function validateMailReceiver($mail_receiver) {
if (!($mail_receiver instanceof PhabricatorCalendarEvent)) {
throw new Exception(
pht(
'Mail receiver is not a %s!',
'PhabricatorCalendarEvent'));
}
}
public function getObjectPrefix() {
return 'E';
}
}