Page MenuHomec4science

PhabricatorPasteTransactionComment.php
No OneTemporary

File Metadata

Created
Wed, Nov 27, 02:13

PhabricatorPasteTransactionComment.php

<?php
/**
* @group paste
*/
final class PhabricatorPasteTransactionComment
extends PhabricatorApplicationTransactionComment {
protected $lineNumber;
protected $lineLength;
public function getApplicationTransactionObject() {
return new PhabricatorPasteTransaction();
}
public function shouldUseMarkupCache($field) {
// Only cache submitted comments.
return ($this->getTransactionPHID() != null);
}
}

Event Timeline