-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
Working on the SDK I read this method in BlobResourceContents.php and wonder if there is not a problem here :
public function jsonSerialize(): array
{
return [
'blob' => $this->blob,
...$this->jsonSerialize(),
];
}
In TextResourceContents.php the method call parent :
public function jsonSerialize(): array
{
return [
'blob' => $this->blob,
...parent::jsonSerialize(),
];
}
Metadata
Metadata
Assignees
Labels
No labels