I always try to code with the best practices possible, and regarding PHP, I use mainly the PSR-12 standards.
Now regarding var declarations, is it "wrong" to use tabs like the example below?
$a = 1;
$abc = 2;
$abdef = 3;
Or should I keep without tabs?
$a = 1;
$abc = 2;
$abdef = 3;
I'm asking this because the first option looks more readable for the developer.