remove ?finally?-statement to support PHP < 5.5

This commit is contained in:
oliver 2015-05-14 19:03:22 +02:00
commit d561cc78ed

View file

@ -82,10 +82,12 @@
} }
$stmt->close();
return $data; return $data;
} }
finally { catch(\Exception $e) {
$stmt->close(); $stmt->close();
throw $e;
} }
} }