Changeset View
Changeset View
Standalone View
Standalone View
src/repository/api/ArcanistRepositoryAPI.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Interfaces with the VCS in the working copy. | * Interfaces with the VCS in the working copy. | ||||
| * | * | ||||
| * @task status Path Status | * @task status Path Status | ||||
| * @group workingcopy | |||||
| */ | */ | ||||
| abstract class ArcanistRepositoryAPI { | abstract class ArcanistRepositoryAPI { | ||||
| const FLAG_MODIFIED = 1; | const FLAG_MODIFIED = 1; | ||||
| const FLAG_ADDED = 2; | const FLAG_ADDED = 2; | ||||
| const FLAG_DELETED = 4; | const FLAG_DELETED = 4; | ||||
| const FLAG_UNTRACKED = 8; | const FLAG_UNTRACKED = 8; | ||||
| const FLAG_CONFLICT = 16; | const FLAG_CONFLICT = 16; | ||||
| ▲ Show 20 Lines • Show All 645 Lines • Show Last 20 Lines | |||||