ok = $ok; $this->value = $value; } /** * Is the value valid? */ public function isOk() { return $this->ok; } /** * The parsed/validated value. */ public function getValue() { return $this->value; } } ?>