mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
asort should be ksort
This commit is contained in:
parent
c2874945c8
commit
04d501cf22
1 changed files with 1 additions and 1 deletions
2
src/infrastructure/env/PhabricatorEnv.php
vendored
2
src/infrastructure/env/PhabricatorEnv.php
vendored
|
@ -223,7 +223,7 @@ final class PhabricatorEnv {
|
||||||
|
|
||||||
public static function calculateEnvironmentHash() {
|
public static function calculateEnvironmentHash() {
|
||||||
$keys = array_keys(self::getAllConfigKeys());
|
$keys = array_keys(self::getAllConfigKeys());
|
||||||
asort($keys);
|
ksort($keys);
|
||||||
|
|
||||||
$values = array();
|
$values = array();
|
||||||
foreach ($keys as $key) {
|
foreach ($keys as $key) {
|
||||||
|
|
Loading…
Reference in a new issue