mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 05:01:13 +01:00
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
This commit is contained in:
parent
065d865bce
commit
4d8ac00602
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ final class DifferentialCommitMessageParser extends Phobject {
|
||||||
/**
|
/**
|
||||||
* @task config
|
* @task config
|
||||||
*/
|
*/
|
||||||
public function setCommitMessageFields($fields) {
|
public function setCommitMessageFields(array $fields) {
|
||||||
assert_instances_of($fields, 'DifferentialCommitMessageField');
|
assert_instances_of($fields, 'DifferentialCommitMessageField');
|
||||||
$fields = mpull($fields, null, 'getCommitMessageFieldKey');
|
$fields = mpull($fields, null, 'getCommitMessageFieldKey');
|
||||||
$this->commitMessageFields = $fields;
|
$this->commitMessageFields = $fields;
|
||||||
|
|
Loading…
Reference in a new issue