We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cccbc5e commit 2cb8277Copy full SHA for 2cb8277
src/Psr7/Message/UploadedFile.php
@@ -62,7 +62,7 @@ public function moveTo(string $targetPath): void
62
$this->stream->rewind();
63
}
64
65
- $target = fopen($targetPath, 'wb');
+ $target = @fopen($targetPath, 'wb');
66
if ($target === false) {
67
throw new RuntimeException('Target path could not be opened');
68
0 commit comments