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