Hello,
There seems to be a recent change in the way braces/brackets are indented when put on their own line in PHP. Previously (in the last stable release I believe), if I typed:
function test($variable)<return> {<return>
That would extend to:
function test($variable) { <insertion point here> }
It would appear that with 2.0-alpha.9515, the same keystrokes cause the opening brace to indent, as such:
function test($variable) { <insertion point here> }
In the Javascript context, the behavior has not changed and the braces are still at the same indent level as the function declaration.
Is this by design? Is there a setting that I can change to return PHP to the previous behavior?
Thank you,
Jay
On Sun, Mar 16, 2014, at 07:31 PM, Jason Discount wrote:
There seems to be a recent change in the way braces/brackets are indented when put on their own line in PHP. Previously (in the last stable release I believe), if I typed:
This was due to a change in the Text/HTML bundles, I've improved the setting and the behavior should be back to normal.