From e7d13b2c7e2f2268e1424aaed02085518afa02d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Perona?= Date: Tue, 5 Feb 2019 18:41:09 -0500 Subject: [PATCH] fix spacing --- src/Converter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Converter.php b/src/Converter.php index 6fc8741..80cf269 100644 --- a/src/Converter.php +++ b/src/Converter.php @@ -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); }