yii\db\QueryTrait::where PHP Method

where() public method

See [[QueryInterface::where()]] for detailed documentation.
See also: andWhere()
See also: orWhere()
public where ( string | array $condition )
$condition string | array the conditions that should be put in the WHERE part.
    public function where($condition)
    {
        $this->where = $condition;
        return $this;
    }