yii\sphinx\Command::bindValue PHP Метод

bindValue() публичный Метод

public bindValue ( $name, $value, $dataType = null )
    public function bindValue($name, $value, $dataType = null)
    {
        if ($this->db->enableFloatConversion && $dataType === null && is_float($value)) {
            $this->floatParams[$name] = $value;
            return $this;
        }
        return parent::bindValue($name, $value, $dataType);
    }