Storm\Core\Object\PropertyData::Another PHP Méthode

Another() final public méthode

Get another property data instance with new data.
final public Another ( array $PropertyData = [] ) : PropertyData
$PropertyData array
Résultat PropertyData
    public final function Another(array $PropertyData = [])
    {
        $ClonedPropertyData = clone $this;
        $ClonedPropertyData->Properties =& $this->Properties;
        $ClonedPropertyData->PropertyData = array_intersect_key($PropertyData, $this->Properties);
        return $ClonedPropertyData;
    }