Skip to content

Commit bb29adc

Browse files
Merge branch '3.0' into 3.1
* 3.0: Fix merge
2 parents 322da5f + b2da500 commit bb29adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Filesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ public function tempnam($dir, $prefix)
491491

492492
// If no scheme or scheme is "file" or "gs" (Google Cloud) create temp file in local filesystem
493493
if (null === $scheme || 'file' === $scheme || 'gs' === $scheme) {
494-
$tmpFile = tempnam($hierarchy, $prefix);
494+
$tmpFile = @tempnam($hierarchy, $prefix);
495495

496496
// If tempnam failed or no scheme return the filename otherwise prepend the scheme
497497
if (false !== $tmpFile) {

0 commit comments

Comments
 (0)