@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change class names in documentation

Summary: Ref T5655. Update class names in documentation after D9983.

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Maniphest Tasks: T5655

Differential Revision: https://secure.phabricator.com/D9984

+3 -3
+1 -1
src/docs/user/userguide/arcanist_lint_unit.diviner
··· 17 17 - if you want to configure linters, or add new linters, you need to create a 18 18 new class which extends @{class@arcanist:ArcanistLintEngine}. 19 19 - if you want to integrate with a unit testing framework, you need to create a 20 - new class which extends @{class@arcanist:ArcanistBaseUnitTestEngine}. 20 + new class which extends @{class@arcanist:ArcanistUnitTestEngine}. 21 21 - if you you want to change how workflows behave, or add new workflows, you 22 22 need to create a new class which extends 23 23 @{class@arcanist:ArcanistConfiguration}.
+1 -1
src/docs/user/userguide/arcanist_new_project.diviner
··· 59 59 @{class@arcanist:ArcanistLintEngine}, which should be used to apply lint 60 60 rules to this project. See @{article:Arcanist User Guide: Lint}. 61 61 - **unit.engine**: the name of a subclass of 62 - @{class@arcanist:ArcanistBaseUnitTestEngine}, which should be used to apply 62 + @{class@arcanist:ArcanistUnitTestEngine}, which should be used to apply 63 63 unit test rules to this project. See 64 64 @{article:Arcanist User Guide: Customizing Lint, Unit Tests and Workflows}. 65 65
+1 -1
src/docs/user/userguide/events.diviner
··· 91 91 92 92 All Arcanist events have this data available: 93 93 94 - - `workflow` The active @{class@arcanist:ArcanistBaseWorkflow}. 94 + - `workflow` The active @{class@arcanist:ArcanistWorkflow}. 95 95 96 96 == Arcanist: Commit: Will Commit SVN == 97 97