Storm\Drivers\Base\Object\Properties\Collections\Collection::exchangeArray PHP 메소드

exchangeArray() 공개 메소드

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);
    }