Large improvement to the way that change detection is achieved
This commit is contained in:
parent
68acf679ed
commit
dd6d5f808b
1 changed files with 4 additions and 1 deletions
|
|
@ -675,7 +675,7 @@ class Bouncer
|
|||
return [];
|
||||
}
|
||||
|
||||
return array_filter(array_map(function ($env) {
|
||||
$envs = array_filter(array_map(function ($env) {
|
||||
if (stripos($env, '=') !== false) {
|
||||
[$envKey, $envVal] = explode('=', $env, 2);
|
||||
|
||||
|
|
@ -688,6 +688,9 @@ class Bouncer
|
|||
|
||||
return $env;
|
||||
}, $envs));
|
||||
|
||||
sort($envs);
|
||||
return $envs;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue