Differential D14068 Diff 34734 src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/transactions/phid/PhabricatorApplicationTransactionTransactionPHIDType.php
| Show All 10 Lines | final class PhabricatorApplicationTransactionTransactionPHIDType | ||||
| public function newObject() { | public function newObject() { | ||||
| // NOTE: We could produce an object here, but we'd need to take a PHID type | // NOTE: We could produce an object here, but we'd need to take a PHID type | ||||
| // and subtype to do so. Currently, we never write edges to transactions, | // and subtype to do so. Currently, we never write edges to transactions, | ||||
| // so leave this unimplemented for the moment. | // so leave this unimplemented for the moment. | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getPHIDTypeApplicationClass() { | |||||
| return 'PhabricatorTransactionsApplication'; | |||||
| } | |||||
| protected function buildQueryForObjects( | protected function buildQueryForObjects( | ||||
| PhabricatorObjectQuery $object_query, | PhabricatorObjectQuery $object_query, | ||||
| array $phids) { | array $phids) { | ||||
| throw new Exception(); | throw new Exception(); | ||||
| } | } | ||||
| public function loadObjects( | public function loadObjects( | ||||
| PhabricatorObjectQuery $object_query, | PhabricatorObjectQuery $object_query, | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||