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
This gives return $this->value ?? $this->value = $param;
Would have expected return $this->value ??= $param; directly, seems not catch even after additional runs of Rector
The text was updated successfully, but these errors were encountered:
Bug Report
Minimal PHP Code Causing Issue
See https://getrector.com/demo/b74a1b1b-f13c-4f65-a7a1-a23c36ca40c7
Responsible rules
IfIssetToCoalescingRector
Expected Behavior
This gives
return $this->value ?? $this->value = $param;
Would have expected
return $this->value ??= $param;
directly, seems not catch even after additional runs of RectorThe text was updated successfully, but these errors were encountered: