Skip to content

Commit 418990d

Browse files
Fix missing $me argument
1 parent d9a1f8c commit 418990d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Database/SybaseConnection.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -503,9 +503,9 @@ public function statement($query, $bindings = array())
503503

504504
public function affectingStatement($query, $bindings = array())
505505
{
506-
return $this->run($query, $bindings, function($me, $query, $bindings)
506+
return $this->run($query, $bindings, function($query, $bindings)
507507
{
508-
if ($me->pretending()) {
508+
if ($this->pretending()) {
509509
return 0;
510510
}
511511
return $this->getPdo()->query($this->compileNewQuery($query, $bindings))->rowCount();

0 commit comments

Comments
 (0)