Skip to content

Commit 1bd4a27

Browse files
committed
fix(openapi): allow null return type
fixes api-platform#6548
1 parent 3be6be3 commit 1bd4a27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenApi/Model/PathItem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function getServers(): ?array
8383
return $this->servers;
8484
}
8585

86-
public function getParameters(): array
86+
public function getParameters(): ?array
8787
{
8888
return $this->parameters;
8989
}

0 commit comments

Comments
 (0)