Commit 3aa15b70 by Qiang Xue

CS fix.

parent 4b930e1d
......@@ -177,8 +177,7 @@ class QueryBuilder extends \yii\base\Object
if (!is_array($value) && isset($columnSchemas[$columns[$i]])) {
$value = $columnSchemas[$columns[$i]]->typecast($value);
}
$vs[] = is_string($value) ? $this->db->quoteValue($value)
: ( is_null($value) ? 'null' : $value );
$vs[] = is_string($value) ? $this->db->quoteValue($value) : ($value === null ? 'NULL' : $value);
}
$values[] = '(' . implode(', ', $vs) . ')';
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment