Skip to content

Commit

Permalink
Correct implode order
Browse files Browse the repository at this point in the history
  • Loading branch information
donatj committed Oct 28, 2021
1 parent 0705ad4 commit 3c52327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";
});
Expand Down

0 comments on commit 3c52327

Please sign in to comment.