public function orMatch($condition, $params = []) { if ($this->match === null) { $this->match = $condition; } else { $this->match = ['or', $this->match, $condition]; } $this->addParams($params); return $this; }