Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/storage/PhabricatorProject.php
| <?php | <?php | ||||
| final class PhabricatorProject extends PhabricatorProjectDAO | final class PhabricatorProject extends PhabricatorProjectDAO | ||||
| implements | implements | ||||
| PhabricatorApplicationTransactionInterface, | PhabricatorApplicationTransactionInterface, | ||||
| PhabricatorFlaggableInterface, | PhabricatorFlaggableInterface, | ||||
| PhabricatorPolicyInterface, | PhabricatorPolicyInterface, | ||||
| PhabricatorExtendedPolicyInterface, | PhabricatorExtendedPolicyInterface, | ||||
| PhabricatorCustomFieldInterface, | PhabricatorCustomFieldInterface, | ||||
| PhabricatorDestructibleInterface, | PhabricatorDestructibleInterface, | ||||
| PhabricatorFulltextInterface, | PhabricatorFulltextInterface, | ||||
| PhabricatorFerretInterface, | PhabricatorFerretInterface, | ||||
| PhabricatorConduitResultInterface, | PhabricatorConduitResultInterface, | ||||
| PhabricatorColumnProxyInterface, | PhabricatorColumnProxyInterface, | ||||
| PhabricatorSpacesInterface, | PhabricatorSpacesInterface, | ||||
| PhabricatorEditEngineSubtypeInterface { | PhabricatorEditEngineSubtypeInterface, | ||||
| PhabricatorWorkboardInterface { | |||||
| protected $name; | protected $name; | ||||
| protected $status = PhabricatorProjectStatus::STATUS_ACTIVE; | protected $status = PhabricatorProjectStatus::STATUS_ACTIVE; | ||||
| protected $authorPHID; | protected $authorPHID; | ||||
| protected $primarySlug; | protected $primarySlug; | ||||
| protected $profileImagePHID; | protected $profileImagePHID; | ||||
| protected $icon; | protected $icon; | ||||
| protected $color; | protected $color; | ||||
| ▲ Show 20 Lines • Show All 893 Lines • Show Last 20 Lines | |||||