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.
1 parent 05fb1c8 commit ce8857bCopy full SHA for ce8857b
src/Orders/Order.php
@@ -201,7 +201,7 @@ public function toArray(): array
201
* @param mixed $value
202
* @return void
203
*/
204
- public function offsetSet($offset, $value)
+ public function offsetSet($offset, $value): void
205
{
206
if (is_null($offset)) {
207
$this->purchase_units[] = $value;
@@ -216,7 +216,7 @@ public function offsetSet($offset, $value)
216
* @param mixed $offset
217
218
219
- public function offsetUnset($offset)
+ public function offsetUnset($offset): void
220
221
unset($this->purchase_units[$offset]);
222
}
0 commit comments