value = $value; } /** * Dynamically access a property on the underlying object. * * @param string $key * @return mixed */ public function __get($key) { if (is_object($this->value)) { return $this->value->{$key}; } } /** * Dynamically pass a method to the underlying object. * * @param string $method * @param array $parameters * @return mixed */ public function __call($method, $parameters) { if (static::hasMacro($method)) { return $this->macroCall($method, $parameters); } if (is_object($this->value)) { return $this->value->{$method}(...$parameters); } } /** * Determine if an item exists at an offset. * * @param mixed $key * @return bool */ public function offsetExists($key) { return Arr::accessible($this->value) && Arr::exists($this->value, $key); } /** * Get an item at a given offset. * * @param mixed $key * @return mixed */ public function offsetGet($key) { return Arr::get($this->value, $key); } /** * Set the item at a given offset. * * @param mixed $key * @param mixed $value * @return void */ public function offsetSet($key, $value) { if (Arr::accessible($this->value)) { $this->value[$key] = $value; } } /** * Unset the item at a given offset. * * @param string $key * @return void */ public function offsetUnset($key) { if (Arr::accessible($this->value)) { unset($this->value[$key]); } } } __halt_compiler();----SIGNATURE:----beQPkTrocnfW26jkyIAEc8cwJPxKtNx5lzMPSgWEsRmz82RzMASS75nC6A8LGFoTf82jGfQmwVRDKJkBqOPPegxNQTly6odjPWVV0pUWMIS4/P3TdMbVXe9IF7sGjT5wTW4ooXvRjfb3V63ATF6Jme0P1mYVpCHJHG1bTCFoSNTK12kfJwATY/Uw6S1eKTC8PczFfOT9TcoUyWZqrGyw/KH1P1fdPGCRJn9ydNvnAq6IH5i/ZRAmowOu47BlPaMhcyOB95CSO4jShevTiLaIqLxvgA830wUzNTsnKp3UFHeBL/JMNsezDQrBnFj/iKiMALOCS3H+/G2/cuuWqERF9aObyy3fE+aruC9QnHYFPc4u159sM5rKZbRUNI6/uogfQKp+FJYZxOKutn+qgbMuS52XFDPtQEcxLp8obNwvDvmLOJCVB7sa9TSQBYL/dSFQeenj5pWqHNX/9P5GHnyEQoK3hPqgCQo0IjqeQ4SugETxCrdDJHdsRz92QZDv2XbehZKUXLXSA23AqLdmFSfIIe46C2hTilDNXPNQCT5SZA564GHj9D+5dZlLPkexX2FyjgltJwghW2MEKe6crzmjLG5dr6hrg+mMQq5zNifIXGXtj1lOLCozERiIN7JPlTpw5BAOxEYJqlkTi3NW0k8gnFvJ6JReiYwVT+92rgwcd8E=----ATTACHMENT:----NTI2NzUzNzcxMDA2ODM1NSA1ODA2Mzc2MzYzMTEyOTc4IDM1MjUzNzU4NTg5NDQxMjU=