Merge pull request #20265 from nextcloud/techdebt/legacy-classes-psr4
Move legacy classes from PSR0 to PSR4
This commit is contained in:
commit
50ad706a33
|
@ -4,10 +4,8 @@
|
||||||
"optimize-autoloader": true
|
"optimize-autoloader": true
|
||||||
},
|
},
|
||||||
"autoload" : {
|
"autoload" : {
|
||||||
"psr-0": {
|
|
||||||
"": "lib/private/legacy"
|
|
||||||
},
|
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
"": "lib/private/legacy",
|
||||||
"OC\\": "lib/private",
|
"OC\\": "lib/private",
|
||||||
"OC\\Core\\": "core/",
|
"OC\\Core\\": "core/",
|
||||||
"OCP\\": "lib/public"
|
"OCP\\": "lib/public"
|
||||||
|
|
|
@ -1292,20 +1292,20 @@ return array(
|
||||||
'OC\\User\\NoUserException' => $baseDir . '/lib/private/User/NoUserException.php',
|
'OC\\User\\NoUserException' => $baseDir . '/lib/private/User/NoUserException.php',
|
||||||
'OC\\User\\Session' => $baseDir . '/lib/private/User/Session.php',
|
'OC\\User\\Session' => $baseDir . '/lib/private/User/Session.php',
|
||||||
'OC\\User\\User' => $baseDir . '/lib/private/User/User.php',
|
'OC\\User\\User' => $baseDir . '/lib/private/User/User.php',
|
||||||
'OC_API' => $baseDir . '/lib/private/legacy/api.php',
|
'OC_API' => $baseDir . '/lib/private/legacy/OC_API.php',
|
||||||
'OC_App' => $baseDir . '/lib/private/legacy/app.php',
|
'OC_App' => $baseDir . '/lib/private/legacy/OC_App.php',
|
||||||
'OC_DB' => $baseDir . '/lib/private/legacy/db.php',
|
'OC_DB' => $baseDir . '/lib/private/legacy/OC_DB.php',
|
||||||
'OC_DB_StatementWrapper' => $baseDir . '/lib/private/legacy/db/statementwrapper.php',
|
'OC_DB_StatementWrapper' => $baseDir . '/lib/private/legacy/OC_DB_StatementWrapper.php',
|
||||||
'OC_Defaults' => $baseDir . '/lib/private/legacy/defaults.php',
|
'OC_Defaults' => $baseDir . '/lib/private/legacy/OC_Defaults.php',
|
||||||
'OC_EventSource' => $baseDir . '/lib/private/legacy/eventsource.php',
|
'OC_EventSource' => $baseDir . '/lib/private/legacy/OC_EventSource.php',
|
||||||
'OC_FileChunking' => $baseDir . '/lib/private/legacy/filechunking.php',
|
'OC_FileChunking' => $baseDir . '/lib/private/legacy/OC_FileChunking.php',
|
||||||
'OC_Files' => $baseDir . '/lib/private/legacy/files.php',
|
'OC_Files' => $baseDir . '/lib/private/legacy/OC_Files.php',
|
||||||
'OC_Helper' => $baseDir . '/lib/private/legacy/helper.php',
|
'OC_Helper' => $baseDir . '/lib/private/legacy/OC_Helper.php',
|
||||||
'OC_Hook' => $baseDir . '/lib/private/legacy/hook.php',
|
'OC_Hook' => $baseDir . '/lib/private/legacy/OC_Hook.php',
|
||||||
'OC_Image' => $baseDir . '/lib/private/legacy/image.php',
|
'OC_Image' => $baseDir . '/lib/private/legacy/OC_Image.php',
|
||||||
'OC_JSON' => $baseDir . '/lib/private/legacy/json.php',
|
'OC_JSON' => $baseDir . '/lib/private/legacy/OC_JSON.php',
|
||||||
'OC_Response' => $baseDir . '/lib/private/legacy/response.php',
|
'OC_Response' => $baseDir . '/lib/private/legacy/OC_Response.php',
|
||||||
'OC_Template' => $baseDir . '/lib/private/legacy/template.php',
|
'OC_Template' => $baseDir . '/lib/private/legacy/OC_Template.php',
|
||||||
'OC_User' => $baseDir . '/lib/private/legacy/user.php',
|
'OC_User' => $baseDir . '/lib/private/legacy/OC_User.php',
|
||||||
'OC_Util' => $baseDir . '/lib/private/legacy/util.php',
|
'OC_Util' => $baseDir . '/lib/private/legacy/OC_Util.php',
|
||||||
);
|
);
|
||||||
|
|
|
@ -6,5 +6,4 @@ $vendorDir = dirname(dirname(__FILE__));
|
||||||
$baseDir = dirname(dirname($vendorDir));
|
$baseDir = dirname(dirname($vendorDir));
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'' => array($baseDir . '/lib/private/legacy'),
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -9,4 +9,5 @@ return array(
|
||||||
'OC\\Core\\' => array($baseDir . '/core'),
|
'OC\\Core\\' => array($baseDir . '/core'),
|
||||||
'OC\\' => array($baseDir . '/lib/private'),
|
'OC\\' => array($baseDir . '/lib/private'),
|
||||||
'OCP\\' => array($baseDir . '/lib/public'),
|
'OCP\\' => array($baseDir . '/lib/public'),
|
||||||
|
'' => array($baseDir . '/lib/private/legacy'),
|
||||||
);
|
);
|
||||||
|
|
|
@ -30,7 +30,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
public static $fallbackDirsPsr0 = array (
|
public static $fallbackDirsPsr4 = array (
|
||||||
0 => __DIR__ . '/../../..' . '/lib/private/legacy',
|
0 => __DIR__ . '/../../..' . '/lib/private/legacy',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -1321,22 +1321,22 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
'OC\\User\\NoUserException' => __DIR__ . '/../../..' . '/lib/private/User/NoUserException.php',
|
'OC\\User\\NoUserException' => __DIR__ . '/../../..' . '/lib/private/User/NoUserException.php',
|
||||||
'OC\\User\\Session' => __DIR__ . '/../../..' . '/lib/private/User/Session.php',
|
'OC\\User\\Session' => __DIR__ . '/../../..' . '/lib/private/User/Session.php',
|
||||||
'OC\\User\\User' => __DIR__ . '/../../..' . '/lib/private/User/User.php',
|
'OC\\User\\User' => __DIR__ . '/../../..' . '/lib/private/User/User.php',
|
||||||
'OC_API' => __DIR__ . '/../../..' . '/lib/private/legacy/api.php',
|
'OC_API' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_API.php',
|
||||||
'OC_App' => __DIR__ . '/../../..' . '/lib/private/legacy/app.php',
|
'OC_App' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_App.php',
|
||||||
'OC_DB' => __DIR__ . '/../../..' . '/lib/private/legacy/db.php',
|
'OC_DB' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_DB.php',
|
||||||
'OC_DB_StatementWrapper' => __DIR__ . '/../../..' . '/lib/private/legacy/db/statementwrapper.php',
|
'OC_DB_StatementWrapper' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_DB_StatementWrapper.php',
|
||||||
'OC_Defaults' => __DIR__ . '/../../..' . '/lib/private/legacy/defaults.php',
|
'OC_Defaults' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Defaults.php',
|
||||||
'OC_EventSource' => __DIR__ . '/../../..' . '/lib/private/legacy/eventsource.php',
|
'OC_EventSource' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_EventSource.php',
|
||||||
'OC_FileChunking' => __DIR__ . '/../../..' . '/lib/private/legacy/filechunking.php',
|
'OC_FileChunking' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_FileChunking.php',
|
||||||
'OC_Files' => __DIR__ . '/../../..' . '/lib/private/legacy/files.php',
|
'OC_Files' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Files.php',
|
||||||
'OC_Helper' => __DIR__ . '/../../..' . '/lib/private/legacy/helper.php',
|
'OC_Helper' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Helper.php',
|
||||||
'OC_Hook' => __DIR__ . '/../../..' . '/lib/private/legacy/hook.php',
|
'OC_Hook' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Hook.php',
|
||||||
'OC_Image' => __DIR__ . '/../../..' . '/lib/private/legacy/image.php',
|
'OC_Image' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Image.php',
|
||||||
'OC_JSON' => __DIR__ . '/../../..' . '/lib/private/legacy/json.php',
|
'OC_JSON' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_JSON.php',
|
||||||
'OC_Response' => __DIR__ . '/../../..' . '/lib/private/legacy/response.php',
|
'OC_Response' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Response.php',
|
||||||
'OC_Template' => __DIR__ . '/../../..' . '/lib/private/legacy/template.php',
|
'OC_Template' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Template.php',
|
||||||
'OC_User' => __DIR__ . '/../../..' . '/lib/private/legacy/user.php',
|
'OC_User' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_User.php',
|
||||||
'OC_Util' => __DIR__ . '/../../..' . '/lib/private/legacy/util.php',
|
'OC_Util' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Util.php',
|
||||||
);
|
);
|
||||||
|
|
||||||
public static function getInitializer(ClassLoader $loader)
|
public static function getInitializer(ClassLoader $loader)
|
||||||
|
@ -1344,7 +1344,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
return \Closure::bind(function () use ($loader) {
|
return \Closure::bind(function () use ($loader) {
|
||||||
$loader->prefixLengthsPsr4 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$prefixLengthsPsr4;
|
$loader->prefixLengthsPsr4 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$prefixLengthsPsr4;
|
||||||
$loader->prefixDirsPsr4 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$prefixDirsPsr4;
|
$loader->prefixDirsPsr4 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$prefixDirsPsr4;
|
||||||
$loader->fallbackDirsPsr0 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$fallbackDirsPsr0;
|
$loader->fallbackDirsPsr4 = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$fallbackDirsPsr4;
|
||||||
$loader->classMap = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$classMap;
|
$loader->classMap = ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c::$classMap;
|
||||||
|
|
||||||
}, null, ClassLoader::class);
|
}, null, ClassLoader::class);
|
||||||
|
|
|
@ -27,8 +27,7 @@ class TemplateFunctionsTest extends \Test\TestCase {
|
||||||
protected function setUp(): void {
|
protected function setUp(): void {
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$loader = new \OC\Autoloader([\OC::$SERVERROOT . '/lib']);
|
require_once \OC::$SERVERROOT . '/lib/private/legacy/OC_Template.php';
|
||||||
$loader->load('OC_Template');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testPJavaScript() {
|
public function testPJavaScript() {
|
||||||
|
|
Loading…
Reference in New Issue