3 final class ConpherenceTransactionComment
4 extends PhabricatorApplicationTransactionComment
{
6 protected $conpherencePHID;
8 public function getApplicationTransactionObject() {
9 return new ConpherenceTransaction();
12 protected function getConfiguration() {
13 $config = parent
::getConfiguration();
15 $config[self
::CONFIG_COLUMN_SCHEMA
] = array(
16 'conpherencePHID' => 'phid?',
17 ) +
$config[self
::CONFIG_COLUMN_SCHEMA
];
19 $config[self
::CONFIG_KEY_SCHEMA
] = array(
21 'columns' => array('authorPHID', 'conpherencePHID', 'transactionPHID'),
24 ) +
$config[self
::CONFIG_KEY_SCHEMA
];