Commit ecb98ed7 authored by Laszlo Korte's avatar Laszlo Korte

writing the result into the output object instead of just echoing it out.

parent ada344f2
......@@ -78,6 +78,11 @@ EOT
$resultSet = $conn->executeUpdate($sql);
}
ob_start();
\Doctrine\Common\Util\Debug::dump($resultSet, (int) $depth);
$output = ob_get_contents();
ob_end_clean();
$output->write();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment