Skip to content

Commit

Permalink
Apply fixes from StyleCI (#22452)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Dec 16, 2017
1 parent de39815 commit 1a0eb89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Query/Grammars/SQLiteGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public function compileUpdate(Builder $query, $values)
{
$table = $this->wrapTable($query->from);

$columns = collect($values)->map(function ($value, $key) use($query) {
$columns = collect($values)->map(function ($value, $key) use ($query) {
return $this->wrap(Str::after($key, $query->from.'.')).' = '.$this->parameter($value);
})->implode(', ');

Expand Down

0 comments on commit 1a0eb89

Please sign in to comment.