Skip to content

Instantly share code, notes, and snippets.

@baileylo
Created January 9, 2013 02:27
Show Gist options
  • Save baileylo/4490036 to your computer and use it in GitHub Desktop.
Save baileylo/4490036 to your computer and use it in GitHub Desktop.
Fix your damn code!
<?php
// If you do this
if ($a) {
if ($b) {
//code here
} else {
//code here
}
} else {
//code here
}
// Please change it to this
if (!$a) {
//code here
} else if ($b) {
//code here
} else {
//code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment