What lay-out do you apply to your php code? For example, do you use
function bla() {
echo "😃";
}
or
function bla()
{
echo "😃";
}
and when to use tabs? And similar questions...
What I mean, is basically if any of you follow certain rules and is there a place I can find them?