I am using VSCode and have installed phpfmt
PHP formater extension. When I hit the format code option, the cruly braces of functions and classes are set to new line. I have practice of adding curly brace on the same line and I want the same to be done by the formater.
What I want is:
public function abc () {
}
What PHP formater does is:
public function abc ()
{
}