I am a little new to using emacs for webdevelopment. I am using php-mode and I am pleased with that. There is only one problem that causes me many problems due to the style of our company.
When I have a function, for example:
$instance = new Model('foo', 'bar');
And I want to postpone it like this:
$instance = new Model( 'foo', 'bar' );
Emacs does the following when I insert a new line before the first argument and backtrack like this:
$instance = new Model( 'foo', 'bar' );
Can someone tell me how I can configure / change this?
Thanks in advance
Danny source share