Skip to content

Commit

Permalink
Merge pull request #150 from neo4j-php/149-unlink
Browse files Browse the repository at this point in the history
Suppress unlink warning
  • Loading branch information
stefanak-michal authored Nov 23, 2024
2 parents eb9bd8c + 4e4f2a7 commit 0b9b4d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bolt.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private function track(): void
]);

if (curl_exec($curl) !== false) {
unlink($file);
@unlink($file);
}
curl_close($curl);
}
Expand Down

0 comments on commit 0b9b4d6

Please sign in to comment.