Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
remyperona committed Feb 5, 2019
1 parent e7650dd commit e7d13b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function normalize($path)
$path = rtrim(str_replace(DIRECTORY_SEPARATOR, '/', $path), '/');

// remove leading current directory.
if (substr( $path, 0, 2 ) === './') {
if (substr($path, 0, 2) === './') {
$path = substr($path, 2);
}

Expand Down

0 comments on commit e7d13b2

Please sign in to comment.