Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialRevision.php
| Show First 20 Lines • Show All 622 Lines • ▼ Show 20 Lines | /* -( PhabricatorTokenReceiverInterface )---------------------------------- */ | ||||
| public function isAccepted() { | public function isAccepted() { | ||||
| return $this->getStatusObject()->isAccepted(); | return $this->getStatusObject()->isAccepted(); | ||||
| } | } | ||||
| public function isNeedsReview() { | public function isNeedsReview() { | ||||
| return $this->getStatusObject()->isNeedsReview(); | return $this->getStatusObject()->isNeedsReview(); | ||||
| } | } | ||||
| public function isChangePlanned() { | |||||
| return $this->getStatusObject()->isChangePlanned(); | |||||
| } | |||||
| public function isPublished() { | |||||
| return $this->getStatusObject()->isPublished(); | |||||
| } | |||||
| 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 279 Lines • Show Last 20 Lines | |||||