Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Created October 5, 2018 00:10
Show Gist options
  • Save joaorobertopb/52f7ef5b8dec3357f8e5fde7b167d26b to your computer and use it in GitHub Desktop.
Save joaorobertopb/52f7ef5b8dec3357f8e5fde7b167d26b to your computer and use it in GitHub Desktop.
Utilize booleanos de forma implícita!
<?php
//Ruim
if (in_array(self::GRUPO_ADMINISTRADOR, $gruposAcesso)) {
return true;
}
return false;
//Bom
return in_array(self::GRUPO_ADMINISTRADOR, $gruposAcesso));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment