Skip to content

Commit b3d7c07

Browse files
committed
fix(openapi): allow null return type
fixes #6548
1 parent 77aeb6b commit b3d7c07

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)