Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crishoj committed Apr 19, 2020
1 parent ca125a9 commit aebd256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Filesystem/Filesystem.php
Expand Up @@ -443,7 +443,7 @@ public function makePathRelative(string $endPath, string $startPath)
[$endPath, $endDriveLetter] = $stripDriveLetter($endPath);
[$startPath, $startDriveLetter] = $stripDriveLetter($startPath);

if ($endDriveLetter && $startDriveLetter && $endDriveLetter <> $startDriveLetter) {
if ($endDriveLetter && $startDriveLetter && $endDriveLetter != $startDriveLetter) {
// Different drives
return $endDriveLetter.':'.$endPath;
}
Expand Down

0 comments on commit aebd256

Please sign in to comment.