Changeset View
Changeset View
Standalone View
Standalone View
src/repository/hookapi/ArcanistHookAPI.php
| <?php | <?php | ||||
| /** | /** | ||||
| * API while running in the context of a commit hook | * API while running in the context of a commit hook. | ||||
| */ | */ | ||||
| abstract class ArcanistHookAPI { | abstract class ArcanistHookAPI { | ||||
| abstract public function getCurrentFileData($path); | abstract public function getCurrentFileData($path); | ||||
| abstract public function getUpstreamFileData($path); | abstract public function getUpstreamFileData($path); | ||||
| } | } | ||||