Differential D21186 Diff 50452 src/applications/audit/storage/PhabricatorAuditTransactionComment.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/storage/PhabricatorAuditTransactionComment.php
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | public function attachReplyToComment( | ||||
| $this->replyToComment = $comment; | $this->replyToComment = $comment; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getReplyToComment() { | public function getReplyToComment() { | ||||
| return $this->assertAttached($this->replyToComment); | return $this->assertAttached($this->replyToComment); | ||||
| } | } | ||||
| public function getAttribute($key, $default = null) { | |||||
| return idx($this->attributes, $key, $default); | |||||
| } | |||||
| public function setAttribute($key, $value) { | |||||
| $this->attributes[$key] = $value; | |||||
| return $this; | |||||
| } | |||||
| } | } | ||||