Created
January 9, 2013 02:27
-
-
Save baileylo/4490036 to your computer and use it in GitHub Desktop.
Fix your damn code!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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