We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1dcf7 commit 4326782Copy full SHA for 4326782
Filesystem.php
@@ -590,7 +590,7 @@ public function isAbsolutePath(string $file)
590
public function tempnam(string $dir, string $prefix/*, string $suffix = ''*/)
591
{
592
$suffix = \func_num_args() > 2 ? func_get_arg(2) : '';
593
- list($scheme, $hierarchy) = $this->getSchemeAndHierarchy($dir);
+ [$scheme, $hierarchy] = $this->getSchemeAndHierarchy($dir);
594
595
// If no scheme or scheme is "file" or "gs" (Google Cloud) create temp file in local filesystem
596
if ((null === $scheme || 'file' === $scheme || 'gs' === $scheme) && '' === $suffix) {
0 commit comments