Murz I have a problem that the code formatter inserts space after & symbol and I can't find the way to disable it, so if I type something like this: $a = &$b; it becomes: $a = & $b; How can I fix this?
MiloslavBeno Just a note: upcoming pre-release will be respecting also this notation for reference assignment: $a =& $b; So whatever is used, it will be kept that way.