Differential D17116 Diff 41173 src/applications/differential/storage/DifferentialTransactionComment.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialTransactionComment.php
| <?php | <?php | ||||
| final class DifferentialTransactionComment | final class DifferentialTransactionComment | ||||
| extends PhabricatorApplicationTransactionComment { | extends PhabricatorApplicationTransactionComment { | ||||
| protected $revisionPHID; | protected $revisionPHID; | ||||
| protected $changesetID; | protected $changesetID; | ||||
| protected $isNewFile = 0; | protected $isNewFile = 0; | ||||
| protected $lineNumber = 0; | protected $lineNumber = 0; | ||||
| protected $lineLength = 0; | protected $lineLength = 0; | ||||
| protected $fixedState; | protected $fixedState; | ||||
| protected $hasReplies = 0; | protected $hasReplies = 0; | ||||
| protected $replyToCommentPHID; | protected $replyToCommentPHID; | ||||
| private $replyToComment = self::ATTACHABLE; | private $replyToComment = self::ATTACHABLE; | ||||
| private $isHidden = self::ATTACHABLE; | private $isHidden = self::ATTACHABLE; | ||||
| private $changeset = self::ATTACHABLE; | |||||
| public function getApplicationTransactionObject() { | public function getApplicationTransactionObject() { | ||||
| return new DifferentialTransaction(); | return new DifferentialTransaction(); | ||||
| } | } | ||||
| public function attachReplyToComment( | public function attachReplyToComment( | ||||
| DifferentialTransactionComment $comment = null) { | DifferentialTransactionComment $comment = null) { | ||||
| $this->replyToComment = $comment; | $this->replyToComment = $comment; | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||