Skip to content

Commit 95bbed1

Browse files
committed
fix: Removes recasting of the same type
1 parent c234cd6 commit 95bbed1

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)