We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5182ba1 commit 51653a1Copy full SHA for 51653a1
src/spec/Encoding.php
@@ -49,7 +49,7 @@ protected function attributes(): array
49
*/
50
public function __construct(array $data)
51
{
52
- if (!isset($data['explode'])) {
+ if (!isset($data['explode']) && isset($data['style'])) {
53
// Spec: When style is form, the default value is true.
54
$data['explode'] = ($data['style'] === 'form');
55
}
tests/bootstrap.php
@@ -1,3 +1,5 @@
1
<?php
2
3
+error_reporting(-1);
4
+
5
require __DIR__ . '/../vendor/autoload.php';
0 commit comments