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 bb07805 + 391d6d0 commit d5f42c3Copy full SHA for d5f42c3
Cloner/Data.php
@@ -155,16 +155,25 @@ public function offsetExists($key)
155
return $this->__isset($key);
156
}
157
158
+ /**
159
+ * @return mixed
160
+ */
161
public function offsetGet($key)
162
{
163
return $this->__get($key);
164
165
166
167
+ * @return void
168
169
public function offsetSet($key, $value)
170
171
throw new \BadMethodCallException(self::class.' objects are immutable.');
172
173
174
175
176
177
public function offsetUnset($key)
178
179
0 commit comments