Skip to content

Commit 375707c

Browse files
authored
Fixed typos in DocumentationNormalizer.php
1 parent a6c0cb3 commit 375707c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Swagger/Serializer/DocumentationNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ private function updateGetOperation(\ArrayObject $pathOperation, array $mimeType
301301
$pathOperation['parameters'][] = $this->getPaginationParameters();
302302

303303
if ($resourceMetadata->getCollectionOperationAttribute($operationName, 'pagination_client_items_per_page', $this->clientItemsPerPage, true)) {
304-
$pathOperation['parameters'][] = $this->getItemsParPageParameters();
304+
$pathOperation['parameters'][] = $this->getItemsPerPageParameters();
305305
}
306306
}
307307

@@ -737,7 +737,7 @@ private function getPaginationParameters(): array
737737
*
738738
* @return array
739739
*/
740-
private function getItemsParPageParameters(): array
740+
private function getItemsPerPageParameters(): array
741741
{
742742
return [
743743
'name' => $this->itemsPerPageParameterName,

0 commit comments

Comments
 (0)