Skip to content

Commit 4326782

Browse files
committed
Fix CS
1 parent 9f1dcf7 commit 4326782

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
@@ -590,7 +590,7 @@ public function isAbsolutePath(string $file)
590590
public function tempnam(string $dir, string $prefix/*, string $suffix = ''*/)
591591
{
592592
$suffix = \func_num_args() > 2 ? func_get_arg(2) : '';
593-
list($scheme, $hierarchy) = $this->getSchemeAndHierarchy($dir);
593+
[$scheme, $hierarchy] = $this->getSchemeAndHierarchy($dir);
594594

595595
// If no scheme or scheme is "file" or "gs" (Google Cloud) create temp file in local filesystem
596596
if ((null === $scheme || 'file' === $scheme || 'gs' === $scheme) && '' === $suffix) {

0 commit comments

Comments
 (0)