From 3c5232722357ca8350dcfdc8bbcbc56a3c3e4b20 Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Wed, 27 Oct 2021 23:29:25 -0500 Subject: [PATCH] Correct implode order --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 7d9c931..7d73a1f 100644 --- a/index.php +++ b/index.php @@ -21,7 +21,7 @@ $parts = explode('\\', $className); array_shift($parts); array_shift($parts); - $path = implode($parts, DIRECTORY_SEPARATOR); + $path = implode(DIRECTORY_SEPARATOR, $parts); require "src/{$path}.php"; });