Skip to content

Commit b953c9e

Browse files
committed
Fixed DDLRunnable
1 parent bde7f91 commit b953c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder/Internal/DDLRunnable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function run(array $params = []) {
2929
$this->query->execute($params);
3030
$response = $this->query->getStatement()->rowCount();
3131
if($this->callbackFn !== null) {
32-
$response = call_user_func($this->callbackFn);
32+
$response = call_user_func($this->callbackFn, $response);
3333
}
3434
return $response;
3535
}

0 commit comments

Comments
 (0)