val($value); } /** * Get or set the element's value * * @param null|string $value * @return string|$this */ public function val($value = null) { if ($value !== null) { $this->value = $value; return $this; } return $this->value; } }