Page MenuHomec4science

PhabricatorObjectMentionedByObjectEdgeType.php
No OneTemporary

File Metadata

Created
Tue, Sep 3, 18:15

PhabricatorObjectMentionedByObjectEdgeType.php

<?php
final class PhabricatorObjectMentionedByObjectEdgeType
extends PhabricatorEdgeType {
const EDGECONST = 51;
public function getInverseEdgeConstant() {
return PhabricatorObjectMentionsObjectEdgeType::EDGECONST;
}
public function shouldWriteInverseTransactions() {
return true;
}
public function getTransactionAddString(
$actor,
$add_count,
$add_edges) {
return pht(
'%s mentioned this in %s.',
$actor,
$add_edges);
}
}

Event Timeline