Sets destination properties.
string $property: The name of the destination property.
mixed $value: The property value to set on the destination.
public function setDestinationProperty($property, $value) { $this->rawDestination[$property] = $value; NestedArray::setValue($this->destination, explode(static::PROPERTY_SEPARATOR, $property), $value, TRUE); }