Skip to content

Commit cac23d5

Browse files
authored
Merge pull request #110 from tailflow/next
v2.1.2 Release
2 parents eaf160c + 341a7b9 commit cac23d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/ValueObjects/Specs/Requests/Batch/BatchStoreRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function toArray(): array
3131
'resources' => [
3232
'type' => 'array',
3333
'items' => [
34-
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
34+
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
3535
]
3636
]
3737
]

src/ValueObjects/Specs/Requests/Batch/BatchUpdateRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function toArray(): array
3131
'resources' => [
3232
'type' => 'array',
3333
'items' => [
34-
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
34+
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
3535
]
3636
]
3737
]

src/ValueObjects/Specs/Requests/StoreRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function toArray(): array
2626
'content' => [
2727
'application/json' => [
2828
'schema' => [
29-
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
29+
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
3030
],
3131
],
3232
],

src/ValueObjects/Specs/Requests/UpdateRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function toArray(): array
2626
'content' => [
2727
'application/json' => [
2828
'schema' => [
29-
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}Resource",
29+
'$ref' => "#/components/schemas/{$this->resourceComponentBaseName}",
3030
],
3131
],
3232
],

0 commit comments

Comments
 (0)