1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 08:12:40 +01:00
phorge-phorge/src/applications/conpherence/storage/ConpherenceTransactionComment.php

21 lines
472 B
PHP
Raw Normal View History

<?php
final class ConpherenceTransactionComment
extends PhabricatorApplicationTransactionComment {
protected $conpherencePHID;
public function getApplicationTransactionObject() {
return new ConpherenceTransaction();
}
public function getConfiguration() {
$config = parent::getConfiguration();
$config[self::CONFIG_COLUMN_SCHEMA] = array(
'conpherencePHID' => 'phid?',
) + $config[self::CONFIG_COLUMN_SCHEMA];
return $config;
}
}