Skip to content

Commit

Permalink
fix(metadata): fix extra properties method (#5294)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvw authored Dec 30, 2022
1 parent 63c6b87 commit 5baea78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private function configureUriVariables($operation)
return $this->normalizeUriVariables($operation);
}

$hasUserConfiguredUriVariables = !($operation->getExtraProperties['is_legacy_resource_metadata'] ?? false);
$hasUserConfiguredUriVariables = !($operation->getExtraProperties()['is_legacy_resource_metadata'] ?? false);
if (!$operation->getUriVariables()) {
$hasUserConfiguredUriVariables = false;
$operation = $operation->withUriVariables($this->transformLinksToUriVariables($this->linkFactory->createLinksFromIdentifiers($operation)));
Expand Down

0 comments on commit 5baea78

Please sign in to comment.