'/'); private $options = array(); public function optionget($item) { if (!isset($this->options[$item])) { throw new Exception(sprintf("You didn't set the option '%s' on the mock user using optionset.", $item)); } return $this->options[$item]; } public function optionset($item, $value) { $this->options[$item] = $value; } }