Refactor test structure and update paths for improved organization

This commit is contained in:
crazywhalecc
2025-12-10 11:15:44 +08:00
parent 78375632b4
commit bde1440617
43 changed files with 4396 additions and 2941 deletions

View File

@@ -25,7 +25,7 @@ class Registry
*/
public static function loadRegistry(string $registry_file, bool $auto_require = true): void
{
$yaml = file_get_contents($registry_file);
$yaml = @file_get_contents($registry_file);
if ($yaml === false) {
throw new RegistryException("Failed to read registry file: {$registry_file}");
}