Page MenuHomec4science

PhabricatorObjectMentionedByObject.php
No OneTemporary

File Metadata

Created
Fri, Nov 22, 21:30

PhabricatorObjectMentionedByObject.php

<?php
final class PhabricatorObjectMentionedByObject extends PhabricatorEdgeType {
const EDGECONST = 51;
public function getInverseEdgeConstant() {
return PhabricatorObjectMentionsObject::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