removed packages directory. refactoring.

This commit is contained in:
Taylor Otwell
2011-10-21 21:49:33 -05:00
parent 80f810de24
commit b71ecb4363
13 changed files with 109 additions and 169 deletions

View File

@@ -139,8 +139,6 @@ class Connection {
*/
public function query($sql, $bindings = array())
{
// Remove expressions from the bindings since they injected into
// the query as raw strings and are not bound parameters.
foreach ($bindings as $key => $value)
{
if ($value instanceof Expression) unset($bindings[$key]);

View File

@@ -24,8 +24,7 @@ class Query {
public $selects;
/**
* If the query is performing an aggregate function, this will contain
* the column and and function to use when aggregating.
* The aggregating column and function.
*
* @var array
*/