When I run PHP Code Inspector set to PSR-2 over my PHP code, it always points out that "the closing brace for a class must go on the next line after the body." PhpStorm formats classes like this:
class MyClass
{
public function myFunction1()
{
// function body goes here
}
public function myFunction2()
{
// function body goes here
}
}
According to PSR-2, the class' closing brace should come right after the class body, so it should look like this:
class MyClass
{
public function myFunction1()
{
// function body goes here
}
public function myFunction2()
{
// function body goes here
}
}
Is there a way to tell PhpStorm to do this correctly? I know I can set the maximum blank lines after functions to 0, but this will apply to all functions and look terrible. I only need the blank line after the final function gone. Any ideas?