mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-09 16:32:39 +01:00
Fix call to non-existing ArcanistAliasEffect::EFFECT_CONFIGURATION in ArcanistAliasEngine
Summary: `ArcanistAliasEffect::EFFECT_CONFIGURATION` does not exist. Probably `ArcanistAliasEffect::EFFECT_MISCONFIGURATION` was meant, given the message it sets. Test Plan: Carefully read the code. Reviewers: O1 Blessed Committers, avivey Reviewed By: O1 Blessed Committers, avivey Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25652
This commit is contained in:
parent
0af89f7d32
commit
21fbc806e4
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ final class ArcanistAliasEngine
|
|||
// This alias is not defined properly, so we're going to ignore it.
|
||||
unset($aliases[$key]);
|
||||
|
||||
$results[] = $this->newEffect(ArcanistAliasEffect::EFFECT_CONFIGURATION)
|
||||
$results[] =
|
||||
$this->newEffect(ArcanistAliasEffect::EFFECT_MISCONFIGURATION)
|
||||
->setMessage(
|
||||
pht(
|
||||
'Configuration source ("%s") defines an invalid alias, which '.
|
||||
|
|
Loading…
Reference in a new issue