mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Simplify one "array_keys/range" -> "phutil_is_natural_list()" in "phabricator/"
Summary: Depends on D20213. Simplify this idiom. Test Plan: Squinted hard; `grep array_keys | grep range`. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D20215
This commit is contained in:
parent
814e6d2de9
commit
b28b05342b
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ final class PhabricatorSetConfigType
|
|||
}
|
||||
|
||||
if ($value) {
|
||||
if (array_keys($value) !== range(0, count($value) - 1)) {
|
||||
if (!phutil_is_natural_list($value)) {
|
||||
throw $this->newException(
|
||||
pht(
|
||||
'Option "%s" is of type "%s", and should be specified on the '.
|
||||
|
|
Loading…
Reference in a new issue