Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/calendar/storage/PhabricatorCalendarEventTransactionComment.php
12253 views
1
<?php
2
3
final class PhabricatorCalendarEventTransactionComment
4
extends PhabricatorApplicationTransactionComment {
5
6
public function getApplicationTransactionObject() {
7
return new PhabricatorCalendarEventTransaction();
8
}
9
10
}
11
12