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
As discussed in person with @asgrim and @akrabat, the following change is not a BC break, because final already makes it impossible to rely on protected properties:
finalclass Foo
{
protected$bar = 'baz';
}
changed into:
finalclass Foo
{
private$bar = 'baz';
}
This kind of scenario is tricky to represent correctly with the current design of the Comparator