From a34402ed8d5dc0f343d767d880681786bd023d8a Mon Sep 17 00:00:00 2001 From: Trey Foster Date: Wed, 30 Dec 2020 10:26:08 -0600 Subject: [PATCH] update cell to cast json obj to array --- src/Resources/Row.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/Row.php b/src/Resources/Row.php index 8349dca..6f46ce0 100644 --- a/src/Resources/Row.php +++ b/src/Resources/Row.php @@ -49,7 +49,7 @@ public function getCell(string $columnName) public function getCells(): Collection { return collect($this->cells)->map(function ($cell) { - return new Cell($this->client, $cell); + return new Cell($this->client, (array) $cell); }); }