Differential D21277 Diff 50671 src/infrastructure/diff/inline/PhabricatorDiffInlineCommentContext.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/inline/PhabricatorDiffInlineCommentContext.php
| <?php | <?php | ||||
| final class PhabricatorDiffInlineCommentContext | final class PhabricatorDiffInlineCommentContext | ||||
| extends PhabricatorInlineCommentContext { | extends PhabricatorInlineCommentContext { | ||||
| private $filename; | |||||
| private $headLines; | private $headLines; | ||||
| private $bodyLines; | private $bodyLines; | ||||
| private $tailLines; | private $tailLines; | ||||
| public function setFilename($filename) { | |||||
| $this->filename = $filename; | |||||
| return $this; | |||||
| } | |||||
| public function getFilename() { | |||||
| return $this->filename; | |||||
| } | |||||
| public function setHeadLines(array $head_lines) { | public function setHeadLines(array $head_lines) { | ||||
| $this->headLines = $head_lines; | $this->headLines = $head_lines; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getHeadLines() { | public function getHeadLines() { | ||||
| return $this->headLines; | return $this->headLines; | ||||
| } | } | ||||
| Show All 20 Lines | |||||