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

@@ -535,7 +535,8 @@ class BundleCompiler
}
// Handle class name includes (could be Asset Bundles with CDN assets)
if (is_string($include) && Manifest::php_find_class($include)) {
// Check manifest data directly since php_find_class throws if not found
if (is_string($include) && isset(Manifest::$data['data']['php_classes'][$include])) {
if (Manifest::php_is_subclass_of($include, 'Rsx_Asset_Bundle_Abstract')) {
$asset_def = $include::define();
if (!empty($asset_def['cdn_assets'])) {