Changeset View
Changeset View
Standalone View
Standalone View
src/parser/diff/ArcanistDiffChangeType.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Defines constants for file types and operations in changesets. | * Defines constants for file types and operations in changesets. | ||||
| * | |||||
| * @group diff | |||||
| */ | */ | ||||
| final class ArcanistDiffChangeType { | final class ArcanistDiffChangeType { | ||||
| const TYPE_ADD = 1; | const TYPE_ADD = 1; | ||||
| const TYPE_CHANGE = 2; | const TYPE_CHANGE = 2; | ||||
| const TYPE_DELETE = 3; | const TYPE_DELETE = 3; | ||||
| const TYPE_MOVE_AWAY = 4; | const TYPE_MOVE_AWAY = 4; | ||||
| const TYPE_COPY_AWAY = 5; | const TYPE_COPY_AWAY = 5; | ||||
| const TYPE_MOVE_HERE = 6; | const TYPE_MOVE_HERE = 6; | ||||
| const TYPE_COPY_HERE = 7; | const TYPE_COPY_HERE = 7; | ||||
| const TYPE_MULTICOPY = 8; | const TYPE_MULTICOPY = 8; | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||