mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
Fix a duplicate case
statement
Summary: This appears to be a typo, identified by `ArcanistXHPASTLinter::LINT_DUPLICATE_SWITCH_CASE` (see D11171). Test Plan: `arc lint` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11194
This commit is contained in:
parent
85b26964f1
commit
4e7c10cec5
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ final class PhabricatorAuthProviderConfigEditor
|
||||||
return (int)$object->getShouldAllowLink();
|
return (int)$object->getShouldAllowLink();
|
||||||
case PhabricatorAuthProviderConfigTransaction::TYPE_UNLINK:
|
case PhabricatorAuthProviderConfigTransaction::TYPE_UNLINK:
|
||||||
return (int)$object->getShouldAllowUnlink();
|
return (int)$object->getShouldAllowUnlink();
|
||||||
case PhabricatorAuthProviderConfigTransaction::TYPE_UNLINK:
|
case PhabricatorAuthProviderConfigTransaction::TYPE_TRUST_EMAILS:
|
||||||
return (int)$object->getShouldTrustEmails();
|
return (int)$object->getShouldTrustEmails();
|
||||||
case PhabricatorAuthProviderConfigTransaction::TYPE_PROPERTY:
|
case PhabricatorAuthProviderConfigTransaction::TYPE_PROPERTY:
|
||||||
$key = $xaction->getMetadataValue(
|
$key = $xaction->getMetadataValue(
|
||||||
|
|
Loading…
Reference in a new issue