From 9804bb55dc28f94cf6917409defd3e69f5769c1a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 Feb 2012 11:17:56 -0600 Subject: [PATCH] comment cleanup. --- laravel/database/connection.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/laravel/database/connection.php b/laravel/database/connection.php index cb144fb5..4d84b949 100644 --- a/laravel/database/connection.php +++ b/laravel/database/connection.php @@ -142,8 +142,7 @@ public function query($sql, $bindings = array()) // The result we return depends on the type of query executed against the // database. On SELECT clauses, we will return the result set, for update - // and deletes we will return the affected row count. And for all other - // queries we'll just return the boolean result. + // and deletes we will return the affected row count. if (stripos($sql, 'select') === 0) { return $statement->fetchAll(PDO::FETCH_CLASS, 'stdClass');