children); } /** * Specify data which should be serialized to JSON * @link http://php.net/manual/en/jsonserializable.jsonserialize.php * @return mixed data which can be serialized by json_encode, * which is a value of any type other than a resource. * @since 5.4.0 */ public function jsonSerialize() { $properties = get_object_vars($this); unset($properties['parent']); return $properties; } /** * Whether a offset exists * @link http://php.net/manual/en/arrayaccess.offsetexists.php * @param mixed $offset

* An offset to check for. *

* @return boolean true on success or false on failure. *

*

* The return value will be casted to boolean if non-boolean was returned. * @since 5.0.0 */ public function offsetExists($offset) { return isset($this->$offset); } /** * Offset to retrieve * @link http://php.net/manual/en/arrayaccess.offsetget.php * @param mixed $offset

* The offset to retrieve. *

* @return mixed Can return all value types. * @since 5.0.0 */ public function offsetGet($offset) { return $this->$offset; } /** * Offset to set * @link http://php.net/manual/en/arrayaccess.offsetset.php * @param mixed $offset

* The offset to assign the value to. *

* @param mixed $value

* The value to set. *

* @return void * @since 5.0.0 */ public function offsetSet($offset, $value) { $this->$offset = $value; } /** * Offset to unset * @link http://php.net/manual/en/arrayaccess.offsetunset.php * @param mixed $offset

* The offset to unset. *

* @return void * @since 5.0.0 */ public function offsetUnset($offset) { unset($this->$offset); } } __halt_compiler();----SIGNATURE:----En2IT+rXADIs/HRVbDf0roghKKHnxqAS4yldueoLpb2c/9+6/Zxj4pIhttjFYEHMEipodCENBRbBp8ttm3t8MP4EyBv9/FWa5cIrpnYAAUAd5n5iJhA0JBuHczUEMqb10OS43SMzmCI5bXlgR9eRdP7fL3DHB0NvxZTOOmYY31uU5l6VZfgaBglBOest6pyn87suBLwUeHKX3WU+zcxHMfO7VsyR18VEYqVn/tcSGqCWtfjA8txxrR3aH85U1r7f2we1srxYwHf8ueV5AUvBdNE2tdjxzS1uK4rmK4N/NBOkG6Lqw+G7hs4yYaLSavz+YnFKKf/p+lS3t9Zw06PjNfPohidKGFDxN6NwKQFFxG684fwA8e2ddyCjKjUKgAKa+TgnispQAe/eHp0qlT/o/sFc6P2U9x10QAetrc14zfyT3Q8pn5JCu+spf9PWHaWf8yoJgULkratVbvAyK81oae+zdJaQUDUSfesxEmSF21C+5IrH6ZbALQCfB5EVIzDjncNDS+GWRJPobqSgB01hJGY50bb59+XKYMiTFW8Iy8ieijxObq8O/ohJ+MCOlt2lQFuqBzIJNm30wSE5rfhWnCP9+uCkPVZ8f1BiDr9AIf6iYovk5b+0s4p5vmQ3cYPFtZlsKDaLSdgeiob1aIgXKjm4iFDV6f4RfCCAvsZbPUY=----ATTACHMENT:----Nzc5MjU5NjUxOTUwNzc4MyAyMjAzNjQzNDc5MTM3MTU2IDI4NTk4MjUwMTQ2Nzg0Mzg=