Open simonwheatley opened 9 years ago
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.
We should adhere to WordPress coding styles, particularly with respect to brackets in conditionals.
This style:
Should be: