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
protected static someVar;
public static function setVar() {
let self::someVar = "";
}
}
let self::someVar = "";
[ERROR] Internal extension compilation failed. Check compile-errors.log for more information.
but
let self::someVar = "123";
let self::someVar = null;
works fine
The text was updated successfully, but these errors were encountered:
namespace Demo;
class MyClass {
}
let self::someVar = "";
[ERROR] Internal extension compilation failed. Check compile-errors.log for more information.
but
let self::someVar = "123";
let self::someVar = null;
works fine
The text was updated successfully, but these errors were encountered: