Skip to content

Commit

Permalink
Backport augmentation performance improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnathonKoster committed May 23, 2024
1 parent 69b181e commit bf47abe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tags/Responses/CollectionRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ private function getRuntimeContext()
{
$context = new RuntimeContext();
$context->parameters = $this->getParameterArray();
$context->context = $this->context->toArray();
$context->context = $this->context->all();

return $context;
}
Expand Down Expand Up @@ -472,7 +472,7 @@ private function renderListComments($comments, $collectionName, $isFlatList)

return $this->parseComments([
$collectionName => $displayComments,
], $this->context->toArray(), $collectionName);
], $this->context->all(), $collectionName);
}

/**
Expand Down

0 comments on commit bf47abe

Please sign in to comment.