Skip to content

Commit

Permalink
Merge pull request #110 from tailflow/next
Browse files Browse the repository at this point in the history
v2.1.2 Release
  • Loading branch information
alexzarbn authored Jul 7, 2021
2 parents eaf160c + 341a7b9 commit cac23d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function toArray(): array
'resources' => [
'type' => 'array',
'items' => [
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
]
]
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function toArray(): array
'resources' => [
'type' => 'array',
'items' => [
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
]
]
]
Expand Down
2 changes: 1 addition & 1 deletion src/ValueObjects/Specs/Requests/StoreRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function toArray(): array
'content' => [
'application/json' => [
'schema' => [
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
],
],
],
Expand Down
2 changes: 1 addition & 1 deletion src/ValueObjects/Specs/Requests/UpdateRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function toArray(): array
'content' => [
'application/json' => [
'schema' => [
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
],
],
],
Expand Down

0 comments on commit cac23d5

Please sign in to comment.