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
In ace1.4.14 php-mode, ace editor showed syntax error at property with 'readonly' and type declaration.
I think it allows to use 'readonly' and type declaration at the same time in PHP8.1.
<?php
class A
{
public int $a; // => OK
public readonly $b; // => OK
public readonly int $c; // => Syntax Error :(
}
Could you fix this?
Best regards.
The text was updated successfully, but these errors were encountered:
Hello team,
In ace1.4.14 php-mode, ace editor showed syntax error at property with 'readonly' and type declaration.
I think it allows to use 'readonly' and type declaration at the same time in PHP8.1.
Could you fix this?
Best regards.
The text was updated successfully, but these errors were encountered: