Storm\Core\Relational\ResultRow::__clone PHP 메소드

__clone() 공개 메소드

public __clone ( )
    public function __clone()
    {
        foreach ($this->Rows as $TableName => $Rows) {
            $this->Rows[$TableName] = clone $this->Rows[$TableName];
            $this->PrimaryKeys[$TableName] = $this->Rows[$TableName]->GetPrimaryKey();
        }
    }