|
/** |
|
* @return mixed[]|null |
|
*/ |
|
public function getMessages(): ?array |
|
{ |
|
return $this->messages; |
|
} |
|
|
|
/** |
|
* @param mixed[]|null $messages |
|
*/ |
|
public function setMessages(?array $messages): self |
|
{ |
|
$this->messages = $messages; |
|
|
|
return $this; |
|
} |
It should not be mixed[] but ObjsMessage[].
It should be assigned the type other than mixed[].
slack-php-api/generated/Model/ConversationsRepliesGetResponse200.php
Lines 47 to 63 in 836217b
It should not bemixed[]butObjsMessage[].It should be assigned the type other than
mixed[].