name = trim($name); return $this; } public function value($value) { $this->value = trim($value); return $this; } public function inline($inline) { $this->inline = (bool) $inline; return $this; } public function toArray() { return [ 'name' => $this->name, 'value' => $this->value, 'inline' => $this->inline ]; } } ?>