Page MenuHomec4science

PonderTransactionFeedStory.php
No OneTemporary

File Metadata

Created
Wed, Nov 27, 11:25

PonderTransactionFeedStory.php

<?php
final class PonderTransactionFeedStory
extends PhabricatorApplicationTransactionFeedStory {
public function getRequiredObjectPHIDs() {
$phids = parent::getRequiredObjectPHIDs();
$answer_phid = $this->getValue('answerPHID');
if ($answer_phid) {
$phids[] = $answer_phid;
}
return $phids;
}
}

Event Timeline