Skip to content

Commit

Permalink
Suppress unlink warning
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanak-michal authored Nov 23, 2024
1 parent eb9bd8c commit 4e4f2a7
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 4e4f2a7

Please sign in to comment.