Storm\Drivers\Base\Object\Properties\Collections\Collection::exchangeArray PHP Method

exchangeArray() public method

public exchangeArray ( $Input )
    public function exchangeArray($Input)
    {
        $this->IsAltered = true;
        $this->RemovedEntities = array_merge($this->RemovedEntities, $this->getArrayCopy());
        $this->AddedEntities = array_merge($this->AddedEntities, $Input);
        parent::exchangeArray($Input);
    }