Working state snapshot with debug settings and pending changes

Fix manifest helper delegator missing return statements

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2026-01-14 22:01:13 +00:00
parent d523f0f600
commit 45838aafd2
8 changed files with 270 additions and 47 deletions

View File

@@ -189,9 +189,9 @@ class Manifest
public static $_manifest_compile_lock;
public static $_get_rsx_files_cache;
public static $_get_rsx_files_cache = null;
public static bool $_has_changed_cache;
public static array $_has_changed_cache = [];
public static bool $_has_manifest_ready = false;
@@ -1209,7 +1209,7 @@ class Manifest
// move to lower soon
public static function _validate_cached_data()
{
_Manifest_Cache_Helper::_validate_cached_data();
return _Manifest_Cache_Helper::_validate_cached_data();
}
/**
@@ -1258,7 +1258,7 @@ class Manifest
*/
public static function _collate_files_by_classes()
{
_Manifest_Builder_Helper::_collate_files_by_classes();
return _Manifest_Builder_Helper::_collate_files_by_classes();
}
/**
@@ -1281,7 +1281,7 @@ class Manifest
*/
public static function _build_event_handler_index()
{
_Manifest_Builder_Helper::_build_event_handler_index();
return _Manifest_Builder_Helper::_build_event_handler_index();
}
/**
@@ -1295,7 +1295,7 @@ class Manifest
*/
public static function _build_classless_php_files_index()
{
_Manifest_Builder_Helper::_build_classless_php_files_index();
return _Manifest_Builder_Helper::_build_classless_php_files_index();
}
/**