Xpressengine\Database\ProxyManager::update PHP Method

update() public method

update
public update ( array $args, array $wheres = null ) : void
$args array parameters
$wheres array \Illuminate\Database\Query\Builder's wheres attribute
return void
    public function update(array $args, array $wheres = null)
    {
        /** @var ProxyInterface $proxy */
        foreach ($this->gets() as $proxy) {
            $proxy->set($this->conn, $this->options);
            $proxy->update($args, $wheres);
        }
    }