Sets a value to an arbitrary property for the component.
string $property: The property to use for the value.
mixed $value: The value to set.
$this
public function set($property, $value) { if (property_exists($this, $property)) { $this->{$property} = $value; } else { $this->additional[$property] = $value; } return $this; }