We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b4539 commit 69bc99eCopy full SHA for 69bc99e
1 file changed
src/ExceptionsHandler/FilesystemExceptionHandler.php
@@ -15,7 +15,7 @@ public function __construct(private readonly Filesystem $filesystem)
15
16
public function save(?int $jobId, $exceptions): void
17
{
18
- if ($jobId === null || !is_resource($exceptions) || stream_get_contents($exceptions, 1) === false) {
+ if ($jobId === null || !\is_resource($exceptions) || stream_get_contents($exceptions, 1) === false) {
19
return;
20
}
21
0 commit comments