1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 17:12:51 +00:00

added type check to autoloader fixes #1504

This commit is contained in:
Cliff Odijk 2013-01-31 23:39:57 +01:00
parent 3b2accfb58
commit 5127fe8359
3 changed files with 20 additions and 2 deletions

View file

@ -40,7 +40,9 @@ class ComposerAutoloaderInitFilesAutoload
require $vendorDir . '/a/a/test.php';
require $vendorDir . '/b/b/test2.php';
require $vendorDir . '/c/c/foo/bar/test3.php';
require $baseDir . '/root.php';
require $vendorDir . '/c/c/foo/bar/test4.php';
return $loader;
}