ParagonIE\EasyDB\EasyStatement::orWith PHP Method

orWith() public method

Add a condition that will be applied with a logical "OR".
public orWith ( string $condition, $values ) : self
$condition string
$values
return self
    public function orWith(string $condition, ...$values) : self
    {
        $this->parts[] = ['type' => 'OR', 'condition' => $condition, 'values' => $values];
        return $this;
    }