Skip to content

Commit 8bef10d

Browse files
committed
fix: setter on product
1 parent 33fc994 commit 8bef10d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Entity/PrestashopProduct.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ public function setId(?int $id): self
179179
return $this;
180180
}
181181

182-
public function setIdManufacturer(?int $idManufacturer): self
182+
public function setIdManufacturer(int|string|null $idManufacturer): self
183183
{
184184
$this->idManufacturer = $idManufacturer;
185185
return $this;
186186
}
187187

188-
public function setIdSupplier(?int $idSupplier): self
188+
public function setIdSupplier(int|string|null $idSupplier): self
189189
{
190190
$this->idSupplier = $idSupplier;
191191
return $this;

0 commit comments

Comments
 (0)