Xpressengine\Database\ProxyManager::update PHP 메소드

update() 공개 메소드

update
public update ( array $args, array $wheres = null ) : void
$args array parameters
$wheres array \Illuminate\Database\Query\Builder's wheres attribute
리턴 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);
        }
    }