Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/maniphest/xaction/ManiphestTaskSubpriorityTransaction.php
12256 views
1
<?php
2
3
final class ManiphestTaskSubpriorityTransaction
4
extends ManiphestTaskTransactionType {
5
6
const TRANSACTIONTYPE = 'subpriority';
7
8
public function generateOldValue($object) {
9
return null;
10
}
11
12
public function applyInternalEffects($object, $value) {
13
// This transaction is obsolete, but we're keeping the class around so it
14
// is hidden from timelines until we destroy the actual transaction data.
15
throw new PhutilMethodNotImplementedException();
16
}
17
18
public function shouldHide() {
19
return true;
20
}
21
22
}
23
24