Skip to content

Commit f63d333

Browse files
authored
fix: update department default assigned operators type hint (#106)
1 parent b7d9cf7 commit f63d333

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Model/Department/Department.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Department extends BaseModel
9898
private $notifyOperators;
9999

100100
/**
101-
* @var Operator[]
101+
* @var string[]
102102
* @SerializedName("default_assignedto")
103103
*/
104104
private $defaultAssignedto;
@@ -422,15 +422,15 @@ public function setNotifyOperators(bool $notifyOperators): self
422422
}
423423

424424
/**
425-
* @return Operator[]
425+
* @return string[]
426426
*/
427427
public function getDefaultAssignedto(): array
428428
{
429429
return $this->defaultAssignedto;
430430
}
431431

432432
/**
433-
* @param Operator[] $defaultAssignedto
433+
* @param string[] $defaultAssignedto
434434
* @return self
435435
*/
436436
public function setDefaultAssignedto(array $defaultAssignedto): self

0 commit comments

Comments
 (0)