Last active
October 5, 2018 00:34
-
-
Save joaorobertopb/137300a95bb42fb755563b05daa39785 to your computer and use it in GitHub Desktop.
Evite condicionais negativos.
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 | |
//Ruim | |
function shouldNotProccess() { //Não devo processar | |
// ... | |
} | |
if (!shouldNotProccess()) { // Devo processar? | |
// … | |
} | |
//Bom | |
function shouldProccess() { // Devo processar | |
// ... | |
} | |
if (!shouldProccess()) { //Não devo processar? | |
// … | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment