Skip to content

Commit 11960b8

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: CS: Apply ternary_to_null_coalescing fixer
2 parents fa8f8ca + 1dcbcd5 commit 11960b8

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
@@ -555,7 +555,7 @@ public function mirror(string $originDir, string $targetDir, \Traversable $itera
555555
} elseif (is_dir($file)) {
556556
$this->mkdir($target);
557557
} elseif (is_file($file)) {
558-
$this->copy($file, $target, isset($options['override']) ? $options['override'] : false);
558+
$this->copy($file, $target, $options['override'] ?? false);
559559
} else {
560560
throw new IOException(sprintf('Unable to guess "%s" file type.', $file), 0, null, $file);
561561
}

0 commit comments

Comments
 (0)