Skip to content

Commit 1583003

Browse files
committed
Allowing WalmartProductResultContentSpecification to contain nulls
1 parent 195ea28 commit 1583003

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DTOs/Walmart/WalmartProductResultContentSpecification.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class WalmartProductResultContentSpecification extends Data
88
{
99
public function __construct(
10-
public readonly string $key,
11-
public readonly string $value,
10+
public readonly ?string $key = null,
11+
public readonly ?string $value = null,
1212
) {}
1313
}

0 commit comments

Comments
 (0)