Skip to content

Commit 45334d0

Browse files
committed
fix: Removes recasting of the same type
1 parent cf06325 commit 45334d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Database/OCI8/PreparedQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function _close(): bool
105105
{
106106
$error = true;
107107
if (isset($this->statement)) {
108-
$error = (bool) oci_free_statement($this->statement);
108+
$error = oci_free_statement($this->statement);
109109
unset($this->statement);
110110
}
111111

0 commit comments

Comments
 (0)