/**
  * Magic method which returns the names of all those properties that should
  * be cached for this node instance.
  *
  * @return array
  * @since 0.10.0
  */
 public function __sleep()
 {
     return array_merge(array('context'), parent::__sleep());
 }