mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-12 20:34:54 +01:00
Summary: Depends on D20279. Ref T5474. Modernize these transactions before I add a new "TriggerTransaction" for setting triggers. Test Plan: Created a column. Edited a column name and point limit. Hid and un-hid a column. Grepped for removed symbols. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T5474 Differential Revision: https://secure.phabricator.com/D20286
18 lines
386 B
PHP
18 lines
386 B
PHP
<?php
|
|
|
|
final class PhabricatorProjectColumnTransaction
|
|
extends PhabricatorModularTransaction {
|
|
|
|
public function getApplicationName() {
|
|
return 'project';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return PhabricatorProjectColumnPHIDType::TYPECONST;
|
|
}
|
|
|
|
public function getBaseTransactionClass() {
|
|
return 'PhabricatorProjectColumnTransactionType';
|
|
}
|
|
|
|
}
|