League\Monga\Query\Update::multiple PHP Method

multiple() public method

Set the multiple option.
public multiple ( boolean $multiple = true ) : object
$multiple boolean whether to allow multiple updates
return object $this
    public function multiple($multiple = true)
    {
        $this->multiple = (bool) $multiple;
        return $this;
    }