Merge "More robust property initialization in ReferenceStack"

This commit is contained in:
jenkins-bot 2021-06-01 23:02:33 +00:00 committed by Gerrit Code Review
commit 1c19bb8b90

View file

@ -121,6 +121,8 @@ class ReferenceStack {
) : ?array {
if ( !isset( $this->refs[$group] ) ) {
$this->refs[$group] = [];
}
if ( !isset( $this->groupRefSequence[$group] ) ) {
$this->groupRefSequence[$group] = 0;
}