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 0ef8bed commit 45ef134Copy full SHA for 45ef134
src/ConstantContact/Definition/Base.php
@@ -114,7 +114,7 @@ public function __get(string $field) : mixed
114
/**
115
* @return mixed value being set to allow for assignment chaining
116
*/
117
- public function __set(string $field, $value)
+ public function __set(string $field, mixed $value)
118
{
119
$actualField = $field;
120
@@ -235,8 +235,7 @@ public function __set(string $field, $value)
235
}
236
237
$this->setFields[$actualField] = true;
238
-
239
- return $this->data[$actualField] = $value;
+ $this->data[$actualField] = $value;
240
241
242
0 commit comments