babble
babble copied to clipboard
Stop! Bracket style!
We should adhere to WordPress coding styles, particularly with respect to brackets in conditionals.
This style:
if ( stuff_exists() )
do_a_thing();
Should be:
if ( stuff_exists() ) {
do_a_thing();
}
Noting that we're calling this issue optional for the Code Review milestone.