Skip to content

Commit 1c756a5

Browse files
algolia-botrenovate[bot]millotp
committed
chore(deps): dependencies 2025-09-29 (generated)
algolia/api-clients-automation#5393 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Algolia Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pierre Millot <[email protected]>
1 parent 8481c6d commit 1c756a5

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Close PR
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Close PR
2020
env:

lib/FormDataProcessor.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* The version of the OpenAPI document: 1.0.0
2020
* Generated by: https://openapi-generator.tech
21-
* Generator version: 7.14.0
21+
* Generator version: 7.16.0
2222
*/
2323

2424
/**
@@ -123,7 +123,11 @@ public static function flatten(array $source, string $start = ''): array
123123
$currentName .= $currentSuffix;
124124
}
125125

126-
$result[$currentName] = ObjectSerializer::toString($val);
126+
if (is_resource($val)) {
127+
$result[$currentName] = $val;
128+
} else {
129+
$result[$currentName] = ObjectSerializer::toString($val);
130+
}
127131
}
128132

129133
$currentName = $start;

0 commit comments

Comments
 (0)