Is it possible to tell PhpStorm that I do not want to start a new level of indention after the class tag?
I've been looking all over and there is a lot of options in Settings>Editor>Code Style>PHP
but I haven't been able to find this there.
This would be an example:
<?php
class test {
public function testFunction() {
//Look ma, first level of indention!
}
}