Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / maniphest / xaction / ManiphestTaskSubpriorityTransaction.php
blobc88ee8aa0c54952d18a14f51bfa078d393d26af9
1 <?php
3 final class ManiphestTaskSubpriorityTransaction
4 extends ManiphestTaskTransactionType {
6 const TRANSACTIONTYPE = 'subpriority';
8 public function generateOldValue($object) {
9 return null;
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();
18 public function shouldHide() {
19 return true;