Skip to content

Commit

Permalink
feat: ean13 can be nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
rem42 committed Apr 18, 2024
1 parent 71d8fa4 commit b5ae9bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entity/PrestashopProduct.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

final class PrestashopProduct
{
public ?string $ean13;
public ?string $ean13 = null;
/** @var array<int, PrestashopItem> */
public array $deliveryInStock = [];
/** @var array<int, PrestashopItem> */
Expand Down

0 comments on commit b5ae9bf

Please sign in to comment.