Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/issue/PhabricatorSetupIssue.php
| <?php | <?php | ||||
| final class PhabricatorSetupIssue extends Phobject { | final class PhabricatorSetupIssue extends Phobject { | ||||
| private $issueKey; | private $issueKey; | ||||
| private $name; | private $name; | ||||
| private $message; | private $message; | ||||
| private $isFatal; | private $isFatal; | ||||
| private $summary; | private $summary; | ||||
| private $shortName; | private $shortName; | ||||
| private $group; | private $group; | ||||
| private $databaseRef; | |||||
| private $isIgnored = false; | private $isIgnored = false; | ||||
| private $phpExtensions = array(); | private $phpExtensions = array(); | ||||
| private $phabricatorConfig = array(); | private $phabricatorConfig = array(); | ||||
| private $relatedPhabricatorConfig = array(); | private $relatedPhabricatorConfig = array(); | ||||
| private $phpConfig = array(); | private $phpConfig = array(); | ||||
| private $commands = array(); | private $commands = array(); | ||||
| private $mysqlConfig = array(); | private $mysqlConfig = array(); | ||||
| ▲ Show 20 Lines • Show All 43 Lines • ▼ Show 20 Lines | final class PhabricatorSetupIssue extends Phobject { | ||||
| public function getShortName() { | public function getShortName() { | ||||
| if ($this->shortName === null) { | if ($this->shortName === null) { | ||||
| return $this->getName(); | return $this->getName(); | ||||
| } | } | ||||
| return $this->shortName; | return $this->shortName; | ||||
| } | } | ||||
| public function setDatabaseRef(PhabricatorDatabaseRef $database_ref) { | |||||
| $this->databaseRef = $database_ref; | |||||
| return $this; | |||||
| } | |||||
| public function getDatabaseRef() { | |||||
| return $this->databaseRef; | |||||
| } | |||||
| public function setGroup($group) { | public function setGroup($group) { | ||||
| $this->group = $group; | $this->group = $group; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getGroup() { | public function getGroup() { | ||||
| if ($this->group) { | if ($this->group) { | ||||
| return $this->group; | return $this->group; | ||||
| ▲ Show 20 Lines • Show All 142 Lines • Show Last 20 Lines | |||||