Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Last active October 5, 2018 00:34
Show Gist options
  • Save joaorobertopb/137300a95bb42fb755563b05daa39785 to your computer and use it in GitHub Desktop.
Save joaorobertopb/137300a95bb42fb755563b05daa39785 to your computer and use it in GitHub Desktop.
Evite condicionais negativos.
<?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