Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crishoj committed Apr 26, 2020
1 parent d5d8d00 commit ff76787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Filesystem/Filesystem.php
Expand Up @@ -483,7 +483,7 @@ public function makePathRelative($endPath, $startPath)

if ($endDriveLetter && $startDriveLetter && $endDriveLetter != $startDriveLetter) {
// End path is on another drive, so no relative path exists
return $endDriveLetter.':/'. ($endPathArr ? implode('/', $endPathArr).'/' : '');
return $endDriveLetter.':/'.($endPathArr ? implode('/', $endPathArr).'/' : '');
}

// Find for which directory the common path stops
Expand Down

0 comments on commit ff76787

Please sign in to comment.