comment cleanup.
This commit is contained in:
parent
97cb0035f4
commit
9804bb55dc
|
@ -142,8 +142,7 @@ public function query($sql, $bindings = array())
|
||||||
|
|
||||||
// The result we return depends on the type of query executed against the
|
// 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
|
// 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
|
// and deletes we will return the affected row count.
|
||||||
// queries we'll just return the boolean result.
|
|
||||||
if (stripos($sql, 'select') === 0)
|
if (stripos($sql, 'select') === 0)
|
||||||
{
|
{
|
||||||
return $statement->fetchAll(PDO::FETCH_CLASS, 'stdClass');
|
return $statement->fetchAll(PDO::FETCH_CLASS, 'stdClass');
|
||||||
|
|
Loading…
Reference in New Issue