@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.

Add missing "array" typehint to DifferentialCommitMessageParser

Summary: See D17058.

Test Plan: Ran `arc diff`, which parsed fields as a side effect.

Reviewers: chad

Reviewed By: chad

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

+1 -1
+1 -1
src/applications/differential/parser/DifferentialCommitMessageParser.php
··· 66 66 /** 67 67 * @task config 68 68 */ 69 - public function setCommitMessageFields($fields) { 69 + public function setCommitMessageFields(array $fields) { 70 70 assert_instances_of($fields, 'DifferentialCommitMessageField'); 71 71 $fields = mpull($fields, null, 'getCommitMessageFieldKey'); 72 72 $this->commitMessageFields = $fields;