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.
2 parents 322da5f + b2da500 commit bb29adcCopy full SHA for bb29adc
Filesystem.php
@@ -491,7 +491,7 @@ public function tempnam($dir, $prefix)
491
492
// If no scheme or scheme is "file" or "gs" (Google Cloud) create temp file in local filesystem
493
if (null === $scheme || 'file' === $scheme || 'gs' === $scheme) {
494
- $tmpFile = tempnam($hierarchy, $prefix);
+ $tmpFile = @tempnam($hierarchy, $prefix);
495
496
// If tempnam failed or no scheme return the filename otherwise prepend the scheme
497
if (false !== $tmpFile) {
0 commit comments