Make it possible to use any type of callable to execute a transaction.

This commit is contained in:
Daniele Alessandri
2011-12-11 09:34:41 +01:00
parent 6e13a8af44
commit 9dcabc3264
+1 -1
View File
@@ -390,7 +390,7 @@ class MultiExecContext
$this->flagState(self::STATE_INSIDEBLOCK);
try {
$callable($this);
call_user_func($callable, $this);
}
catch (CommunicationException $exception) {
$blockException = $exception;