Elgg\Mocks\Database\EntityTable::updateRow PHP Method

updateRow() public method

public updateRow ( $guid, stdClass $row )
$row stdClass
    public function updateRow($guid, stdClass $row)
    {
        $attributes = array_merge((array) $this->rows[$guid], (array) $row);
        // Rebuild query specs for the udpated row
        $this->addQuerySpecs((object) $attributes);
        return parent::updateRow($guid, $row);
    }