Skip to content

Commit 1dcbcd5

Browse files
committed
CS: Apply ternary_to_null_coalescing fixer
1 parent d99fbef commit 1dcbcd5

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
@@ -577,7 +577,7 @@ public function mirror($originDir, $targetDir, \Traversable $iterator = null, $o
577577
} elseif (is_dir($file)) {
578578
$this->mkdir($target);
579579
} elseif (is_file($file)) {
580-
$this->copy($file, $target, isset($options['override']) ? $options['override'] : false);
580+
$this->copy($file, $target, $options['override'] ?? false);
581581
} else {
582582
throw new IOException(sprintf('Unable to guess "%s" file type.', $file), 0, null, $file);
583583
}

0 commit comments

Comments
 (0)