Browse Source
Use lib/ instead of src/ because that is what people are used to
remotes/origin/move_setupfromtoken_to_sharemanager
Joas Schilling
10 years ago
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
1 changed files with
1 additions and
1 deletions
-
lib/private/legacy/app.php
|
|
@ -164,7 +164,7 @@ class OC_App { |
|
|
|
protected static function registerAutoloading($app, $path) { |
|
|
|
// Register on PSR-4 composer autoloader
|
|
|
|
$appNamespace = \OC\AppFramework\App::buildAppNamespace($app); |
|
|
|
\OC::$composerAutoloader->addPsr4($appNamespace . '\\', $path . '/src/', true); |
|
|
|
\OC::$composerAutoloader->addPsr4($appNamespace . '\\', $path . '/lib/', true); |
|
|
|
if (defined('PHPUNIT_RUN')) { |
|
|
|
\OC::$composerAutoloader->addPsr4($appNamespace . '\\Tests\\', $path . '/tests/', true); |
|
|
|
} |
|
|
|