Bug Report
| Subject |
Details |
| Rector version |
v0.15.0 |
| PHP Version |
v8.2 |
i had issue when i extends the readonly class which child class doesnt have readonly
readonly abstract class Action
{
}
child
class Something extends Action
{
}
Expected Behaviour
i expect this is will automatically add the readonly when the parent was readonly
readonly abstract class Action
{
}
child
readonly class Something extends Action
{
}