Skip to content

Commit

Permalink
fix autoloader bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Eichhorn committed Sep 24, 2023
1 parent a9c98d6 commit bf0c5e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Autoloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private function __construct()
*/
public static function addPath(string $path) : void
{
self::$paths[] = $path;
self::$paths[] = \rtrim($path, '/\\') . '/';
}

/**
Expand Down

0 comments on commit bf0c5e6

Please sign in to comment.