Differential D21186 Diff 50451 src/applications/differential/storage/DifferentialTransactionComment.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialTransactionComment.php
| Show First 20 Lines • Show All 112 Lines • ▼ Show 20 Lines | public function getIsHidden() { | ||||
| return $this->assertAttached($this->isHidden); | return $this->assertAttached($this->isHidden); | ||||
| } | } | ||||
| public function attachIsHidden($hidden) { | public function attachIsHidden($hidden) { | ||||
| $this->isHidden = $hidden; | $this->isHidden = $hidden; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getAttribute($key, $default = null) { | |||||
| return idx($this->attributes, $key, $default); | |||||
| } | |||||
| public function setAttribute($key, $value) { | |||||
| $this->attributes[$key] = $value; | |||||
| return $this; | |||||
| } | |||||
| } | } | ||||