Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/storage/PhabricatorRepository.php
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | final class PhabricatorRepository extends PhabricatorRepositoryDAO | ||||
| const TABLE_PARENTS = 'repository_parents'; | const TABLE_PARENTS = 'repository_parents'; | ||||
| const TABLE_COVERAGE = 'repository_coverage'; | const TABLE_COVERAGE = 'repository_coverage'; | ||||
| const BECAUSE_REPOSITORY_IMPORTING = 'auto/importing'; | const BECAUSE_REPOSITORY_IMPORTING = 'auto/importing'; | ||||
| const BECAUSE_AUTOCLOSE_DISABLED = 'auto/disabled'; | const BECAUSE_AUTOCLOSE_DISABLED = 'auto/disabled'; | ||||
| const BECAUSE_NOT_ON_AUTOCLOSE_BRANCH = 'auto/nobranch'; | const BECAUSE_NOT_ON_AUTOCLOSE_BRANCH = 'auto/nobranch'; | ||||
| const BECAUSE_BRANCH_UNTRACKED = 'auto/notrack'; | const BECAUSE_BRANCH_UNTRACKED = 'auto/notrack'; | ||||
| const BECAUSE_BRANCH_NOT_AUTOCLOSE = 'auto/noclose'; | const BECAUSE_BRANCH_NOT_AUTOCLOSE = 'auto/noclose'; | ||||
| const BECAUSE_AUTOCLOSE_FORCED = 'auto/forced'; | |||||
| const STATUS_ACTIVE = 'active'; | const STATUS_ACTIVE = 'active'; | ||||
| const STATUS_INACTIVE = 'inactive'; | const STATUS_INACTIVE = 'inactive'; | ||||
| protected $name; | protected $name; | ||||
| protected $callsign; | protected $callsign; | ||||
| protected $repositorySlug; | protected $repositorySlug; | ||||
| protected $uuid; | protected $uuid; | ||||
| ▲ Show 20 Lines • Show All 2,850 Lines • Show Last 20 Lines | |||||