Applying short syntax notation fix works incorrectly.
$str1 = 'a';
$str2 = 'b';
$str1 = $str1.'='.$str2;
Current behaviour
//I get
$str1 .= $str2.'=';
Expected behaviour
//Should be
$str1 .= '='.$str2;
Php Inspections (EA Extended) update v3.0.14
I confirm. I observed the same on Ultimate and now I have it on Extended since the update.
Fixed!
Most helpful comment
Fixed!