removed packages directory. refactoring.
This commit is contained in:
@@ -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]);
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user