Skip to content

Commit

Permalink
NGSTACK-900: make sure dumped keys correspond to properties
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed May 28, 2024
1 parent 5ced4d2 commit f0317b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Core/Site/Values/ContentInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getDebugInfo(): array
'name' => $this->name,
'published' => $this->innerContentInfo->published,
'currentVersionNo' => $this->innerContentInfo->currentVersionNo,
'publicationDate' => $this->innerContentInfo->publishedDate,
'publishedDate' => $this->innerContentInfo->publishedDate,
'modificationDate' => $this->innerContentInfo->modificationDate,
'languageCode' => $this->languageCode,
'mainLanguageCode' => $this->innerContentInfo->mainLanguageCode,
Expand All @@ -109,7 +109,7 @@ public function getDebugInfo(): array
'isHidden' => $this->innerContentInfo->isHidden,
'sectionId' => $this->innerContentInfo->sectionId,
'ownerId' => $this->innerContentInfo->ownerId,
'contentType' => $this->innerContentType,
'innerContentType' => $this->innerContentType,
'mainLocation' => $this->getMainLocation(),
];
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Core/Site/Values/Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function getDebugInfo(): array
'isEmpty' => $this->isEmpty,
'isSurrogate' => $this->isSurrogate,
'content' => $this->content,
'fieldDefinition' => $this->innerFieldDefinition,
'innerFieldDefinition' => $this->innerFieldDefinition,
'value' => $this->value,
];
}
Expand Down

0 comments on commit f0317b4

Please sign in to comment.