- Edited
Here is my desired output
class MyClass {
private string $myVar; // note about myVar
private string $myOtherVar; // not about myOtherVar
}
But what I get after I format is this.
class MyClass {
private string $myVar;
// note about myVar
private string $myOtherVar;
// not about myOtherVar
}
I have read over all the spacing and newline options and LOOOOOOVE it all give or take a few little headaches like this.
Am I missing something very simple?