It seems like $destination can also be of type null and string[]; however, parameter $filename of is_dir() does only seem to accept string, maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
29
if (is_dir(/** @scrutinizer ignore-type */ $destination)) {
It seems like $destination can also be of type null and string[]; however, parameter $filename of file_exists() does only seem to accept string, maybe add an additional type check?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
35
if (file_exists(/** @scrutinizer ignore-type */ $destination) && !$overwrite) {
Loading history...
36
if ($input->getOption('no-interaction')) {
37
throw new \LogicException('File destination ' . $destination . ' exists');