Hi, We added `Squiz.Formatting.OperatorBracket` to our ruleset and the autofix operation did this: ``` - return $this->gmail - ?? $this->gmail = new Google_Service_Gmail($this->google); + return ($this->gmail + ?? $this->gmail) = new Google_Service_Gmail($this->google); ``` Using v3.5.5 Thanks for help!