|
|
@@ -44,7 +44,7 @@ class DolibarrAccount implements ApiResourcesInterface
|
|
|
* Dolibarr societies pk
|
|
|
*/
|
|
|
#[Groups('dolibarr_get')]
|
|
|
- private int $socId;
|
|
|
+ private ?int $socId = null;
|
|
|
|
|
|
/**
|
|
|
* Opentalent client ref
|
|
|
@@ -87,12 +87,12 @@ class DolibarrAccount implements ApiResourcesInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getSocId(): int
|
|
|
+ public function getSocId(): ?int
|
|
|
{
|
|
|
return $this->socId;
|
|
|
}
|
|
|
|
|
|
- public function setSocId(int $socId): self
|
|
|
+ public function setSocId(?int $socId): self
|
|
|
{
|
|
|
$this->socId = $socId;
|
|
|
return $this;
|