Xpressengine\Database\ProxyManager::delete PHP Method

delete() public method

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