Skip to content

Commit 0b9b4d6

Browse files
Merge pull request #150 from neo4j-php/149-unlink
Suppress unlink warning
2 parents eb9bd8c + 4e4f2a7 commit 0b9b4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bolt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private function track(): void
8282
]);
8383

8484
if (curl_exec($curl) !== false) {
85-
unlink($file);
85+
@unlink($file);
8686
}
8787
curl_close($curl);
8888
}

0 commit comments

Comments
 (0)