You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compileFile method in Compiler.php line 60 uses an implicitly nullable parameter $cssFilePath without explicitly marking it as nullable, which triggers a deprecation notice in PHP 8.4.1. This needs to be updated to ensure compatibility with PHP 8.4.1 and future versions.
The compileFile method in Compiler.php line 60 uses an implicitly nullable parameter $cssFilePath without explicitly marking it as nullable, which triggers a deprecation notice in PHP 8.4.1. This needs to be updated to ensure compatibility with PHP 8.4.1 and future versions.
the current method is:
To fix this issue, $cssFilePAth should be explicitly marked as nullable using ?String, as follows:
Thank you for addressing this issue!
The text was updated successfully, but these errors were encountered: