mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-30 01:10:58 +01:00
Fix method visibility for PhabricatorApplicationTransactionEditor
methods
Summary: Ref T6822. Test Plan: Visual inspection. These methods are only called from within the `PhabricatorApplicationTransactionEditor` class. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11244
This commit is contained in:
parent
ade6f82dd5
commit
78b19a43e1
2 changed files with 6 additions and 6 deletions
|
@ -19,7 +19,7 @@ final class ReleephProductEditor
|
||||||
return $types;
|
return $types;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomTransactionOldValue(
|
protected function getCustomTransactionOldValue(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ final class ReleephProductEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomTransactionNewValue(
|
protected function getCustomTransactionNewValue(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ final class ReleephProductEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function applyCustomInternalTransaction(
|
protected function applyCustomInternalTransaction(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
$new = $xaction->getNewValue();
|
$new = $xaction->getNewValue();
|
||||||
|
|
|
@ -26,7 +26,7 @@ final class ReleephRequestTransactionalEditor
|
||||||
return $types;
|
return $types;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomTransactionOldValue(
|
protected function getCustomTransactionOldValue(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ final class ReleephRequestTransactionalEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCustomTransactionNewValue(
|
protected function getCustomTransactionNewValue(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ final class ReleephRequestTransactionalEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function applyCustomInternalTransaction(
|
protected function applyCustomInternalTransaction(
|
||||||
PhabricatorLiskDAO $object,
|
PhabricatorLiskDAO $object,
|
||||||
PhabricatorApplicationTransaction $xaction) {
|
PhabricatorApplicationTransaction $xaction) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue