Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialRevision.php
| Show First 20 Lines • Show All 647 Lines • ▼ Show 20 Lines | /* -( PhabricatorTokenReceiverInterface )---------------------------------- */ | ||||
| public function isChangePlanned() { | public function isChangePlanned() { | ||||
| return $this->getStatusObject()->isChangePlanned(); | return $this->getStatusObject()->isChangePlanned(); | ||||
| } | } | ||||
| public function isPublished() { | public function isPublished() { | ||||
| return $this->getStatusObject()->isPublished(); | return $this->getStatusObject()->isPublished(); | ||||
| } | } | ||||
| public function isDraft() { | |||||
| return $this->getStatusObject()->isDraft(); | |||||
| } | |||||
| public function getStatusIcon() { | public function getStatusIcon() { | ||||
| return $this->getStatusObject()->getIcon(); | return $this->getStatusObject()->getIcon(); | ||||
| } | } | ||||
| public function getStatusDisplayName() { | public function getStatusDisplayName() { | ||||
| return $this->getStatusObject()->getDisplayName(); | return $this->getStatusObject()->getDisplayName(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 300 Lines • Show Last 20 Lines | |||||