From 0c133dd96ce292cf2f2a4d6c83616bdcd3813be8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 6 Feb 2012 23:02:49 -0600 Subject: [PATCH] trimming comment. --- laravel/database/query/grammars/grammar.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/laravel/database/query/grammars/grammar.php b/laravel/database/query/grammars/grammar.php index d8ced03b..aefa5a48 100644 --- a/laravel/database/query/grammars/grammar.php +++ b/laravel/database/query/grammars/grammar.php @@ -384,8 +384,7 @@ public function delete(Query $query) // Like the UPDATE statement, the DELETE statement is constrained // by WHERE clauses, so we'll need to run the "wheres" method to - // make the WHERE clauses for the query. The "wheres" method - // encapsulates the logic to create the full WHERE clause. + // make the WHERE clauses for the query. return trim("DELETE FROM {$table} ".$this->wheres($query)); }