$name = $value; } } public function __isset($name) { if (('word' == $name) && (null !== self::$word)) { return true; } return false; } public function __call($method, $args) { switch ($method) { case 'setExpirationHops': case 'setExpirationSeconds': $this->$method = array_shift($args); break; default: } } }