Skip to content

Instantly share code, notes, and snippets.

@gsherwood
Created July 11, 2015 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gsherwood/548c0111dae11c3ec768 to your computer and use it in GitHub Desktop.
Save gsherwood/548c0111dae11c3ec768 to your computer and use it in GitHub Desktop.
PHPCBF if/elseif/else test
<?php
if ($foo) {
echo 'foo';
} elseif ($bar) {
echo 'bar';
} else {
echo 'else';
}
<?php
if ($foo)
{
echo 'foo';
}
elseif ($bar)
{
echo 'bar';
}else{ echo 'else';}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment