mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
ef1bedef02
Summary: Schema changes to modernize this app. Test Plan: Ran schema changes, created a new slowvote. No real effects yet. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D6453
11 lines
222 B
PHP
11 lines
222 B
PHP
<?php
|
|
|
|
final class PhabricatorSlowvoteTransactionComment
|
|
extends PhabricatorApplicationTransactionComment {
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return new PhabricatorSlowvoteTransaction();
|
|
}
|
|
|
|
}
|
|
|