We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 951fda2 + 043cf3c commit 830c52bCopy full SHA for 830c52b
src/MessageBird/Resources/PartnerAccount/Accounts.php
@@ -73,7 +73,8 @@ public function getList(?array $parameters = [])
73
74
$return = [];
75
foreach ($response as &$singleResponse) {
76
- $return[] = $this->getObject()->loadFromStdclass($singleResponse);
+ $object = clone $this->getObject();
77
+ $return[] = $object->loadFromStdclass($singleResponse);
78
}
79
80
return $return;
0 commit comments