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 9b3b0cb commit 1f92ca7Copy full SHA for 1f92ca7
Factory/UploadedFile.php
@@ -62,7 +62,7 @@ public function move(string $directory, ?string $name = null): File
62
throw new FileException(\sprintf('Could not move the file "%s" to "%s" (%s).', $this->getPathname(), $target, $e->getMessage()), 0, $e);
63
}
64
65
- @chmod($target, 0666 & ~umask());
+ @chmod($target, 0o666 & ~umask());
66
67
return $target;
68
0 commit comments