Fix TestCalls class folder name based on namespace

This commit is contained in:
Clemens Schwaighofer
2023-10-04 18:26:38 +09:00
parent e9799f888b
commit 2f81009a97
4 changed files with 4 additions and 4 deletions

View File

@@ -260,6 +260,6 @@ return array(
'Smarty_Variable' => $vendorDir . '/egrajp/smarty-extended/src/sysplugins/smarty_variable.php',
'TPC_yyStackEntry' => $vendorDir . '/egrajp/smarty-extended/src/sysplugins/smarty_internal_configfileparser.php',
'TP_yyStackEntry' => $vendorDir . '/egrajp/smarty-extended/src/sysplugins/smarty_internal_templateparser.php',
'TestCalls\\DB\\TestDB' => $baseDir . '/lib/Test/DB/TestDB.php',
'TestCalls\\Test' => $baseDir . '/lib/Test/Test.php',
'TestCalls\\DB\\TestDB' => $baseDir . '/lib/TestCalls/DB/TestDB.php',
'TestCalls\\Test' => $baseDir . '/lib/TestCalls/Test.php',
);

View File

@@ -288,8 +288,8 @@ class ComposerStaticInit10fe8fe2ec4017b8644d2b64bcf398b9
'Smarty_Variable' => __DIR__ . '/..' . '/egrajp/smarty-extended/src/sysplugins/smarty_variable.php',
'TPC_yyStackEntry' => __DIR__ . '/..' . '/egrajp/smarty-extended/src/sysplugins/smarty_internal_configfileparser.php',
'TP_yyStackEntry' => __DIR__ . '/..' . '/egrajp/smarty-extended/src/sysplugins/smarty_internal_templateparser.php',
'TestCalls\\DB\\TestDB' => __DIR__ . '/../..' . '/lib/Test/DB/TestDB.php',
'TestCalls\\Test' => __DIR__ . '/../..' . '/lib/Test/Test.php',
'TestCalls\\DB\\TestDB' => __DIR__ . '/../..' . '/lib/TestCalls/DB/TestDB.php',
'TestCalls\\Test' => __DIR__ . '/../..' . '/lib/TestCalls/Test.php',
);
public static function getInitializer(ClassLoader $loader)