Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joaorobertopb/eead6862be85548a41c340bbd266d8b4 to your computer and use it in GitHub Desktop.
Save joaorobertopb/eead6862be85548a41c340bbd266d8b4 to your computer and use it in GitHub Desktop.
<?php
//Ruim
if ($article->state === 'published') {
// ...
}
//Bom
if ($article->isPublished()) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment